ServiceFabricManagementClient Claude Desktop Config
Add the ServiceFabricManagementClient MCP server to Claude Desktop with this ready-to-use configuration.
Setup Instructions
- Open Claude Desktop
- Go to Settings → Developer → Edit Config →
claude_desktop_config.json - Paste the JSON below into the file
- Set your credentials in the
envsection - Restart Claude Desktop
Configuration JSON
Copy the entire block into your claude_desktop_config.json
{
"mcpServers": {
"azure-com-servicefabric-cluster": {
"command": "npx",
"args": [
"-y",
"@mcp/azure-com-servicefabric-cluster"
],
"env": {
"SERVICEFABRICMANAGEMENTCLIENT_API_KEY": "your_servicefabricmanagementclient_api_key"
}
}
}
}Environment Variables
SERVICEFABRICMANAGEMENTCLIENT_API_KEYReplace your_servicefabricmanagementclient_api_key with your actual servicefabricmanagementclient api key
Endpoints
/providers/Microsoft.ServiceFabric/operationsLists all of the available Service Fabric resource provider API operations.
/subscriptions/{subscriptionId}/providers/Microsoft.ServiceFabric/clustersGets the list of Service Fabric cluster resources created in the specified subscription.
/subscriptions/{subscriptionId}/providers/Microsoft.ServiceFabric/locations/{location}/clusterVersionsGets the list of Service Fabric cluster code versions available for the specified location.
/subscriptions/{subscriptionId}/providers/Microsoft.ServiceFabric/locations/{location}/clusterVersions/{clusterVersion}Gets information about a Service Fabric cluster code version available in the specified location.
/subscriptions/{subscriptionId}/providers/Microsoft.ServiceFabric/locations/{location}/environments/{environment}/clusterVersionsGets the list of Service Fabric cluster code versions available for the specified environment.
/subscriptions/{subscriptionId}/providers/Microsoft.ServiceFabric/locations/{location}/environments/{environment}/clusterVersions/{clusterVersion}Gets information about a Service Fabric cluster code version available for the specified environment.
/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceFabric/clusters/{clusterName}Gets a Service Fabric cluster resource.
/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceFabric/clusters/{clusterName}Creates or updates a Service Fabric cluster resource.
/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceFabric/clusters/{clusterName}Deletes a Service Fabric cluster resource.
/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceFabric/clusters/{clusterName}Updates the configuration of a Service Fabric cluster resource.