Skip to content
MCP-BridgeMCP-Bridge
Cloud Infrastructure

ServiceFabricManagementClient MCP Config

Azure Service Fabric Resource Provider API Client

Config URL

Use this URL in any MCP-compatible client to fetch the config automatically.

https://mcpbridge.org/config/azure-com-servicefabric-cluster.json

One-Click Install

Copy the snippet for your MCP client and paste it in — zero editing required.

Claude Desktop

Add to 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"
      }
    }
  }
}

Cursor

Settings → MCP Servers → Add

{
  "mcpServers": {
    "azure-com-servicefabric-cluster": {
      "url": "https://mcpbridge.org/config/azure-com-servicefabric-cluster.json"
    }
  }
}

VS Code

Use with MCP extension

{
  "mcpServers": {
    "azure-com-servicefabric-cluster": {
      "url": "https://mcpbridge.org/config/azure-com-servicefabric-cluster.json"
    }
  }
}

Configuration JSON

Use curl https://mcpbridge.org/config/azure-com-servicefabric-cluster.json to fetch programmatically.

{
  "mcpServers": {
    "azure-com-servicefabric-cluster": {
      "command": "npx",
      "args": ["-y","@mcp/azure-com-servicefabric-cluster"],
      "env": {
      "SERVICEFABRICMANAGEMENTCLIENT_API_KEY": "your_servicefabricmanagementclient_api_key"
}
    }
  }
}

How to Use

Claude Desktop

Paste the config JSON into your claude_desktop_config.json.

Full instructions →

Cursor

Go to Cursor Settings → MCP Servers → Add with the JSON above.

CLI / curl

Fetch the config programmatically:

curl https://mcpbridge.org/config/azure-com-servicefabric-cluster.json

Environment Variables

SERVICEFABRICMANAGEMENTCLIENT_API_KEY

Replace your_servicefabricmanagementclient_api_key with your actual servicefabricmanagementclient api key

Endpoints

GET/providers/Microsoft.ServiceFabric/operations

Lists all of the available Service Fabric resource provider API operations.

GET/subscriptions/{subscriptionId}/providers/Microsoft.ServiceFabric/clusters

Gets the list of Service Fabric cluster resources created in the specified subscription.

GET/subscriptions/{subscriptionId}/providers/Microsoft.ServiceFabric/locations/{location}/clusterVersions

Gets the list of Service Fabric cluster code versions available for the specified location.

GET/subscriptions/{subscriptionId}/providers/Microsoft.ServiceFabric/locations/{location}/clusterVersions/{clusterVersion}

Gets information about a Service Fabric cluster code version available in the specified location.

GET/subscriptions/{subscriptionId}/providers/Microsoft.ServiceFabric/locations/{location}/environments/{environment}/clusterVersions

Gets the list of Service Fabric cluster code versions available for the specified environment.

GET/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.

GET/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceFabric/clusters/{clusterName}

Gets a Service Fabric cluster resource.

PUT/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceFabric/clusters/{clusterName}

Creates or updates a Service Fabric cluster resource.

DELETE/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceFabric/clusters/{clusterName}

Deletes a Service Fabric cluster resource.

PATCH/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceFabric/clusters/{clusterName}

Updates the configuration of a Service Fabric cluster resource.