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-application.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-application": {
      "command": "npx",
      "args": [
        "-y",
        "@mcp/azure-com-servicefabric-application"
      ],
      "env": {
        "SERVICEFABRICMANAGEMENTCLIENT_API_KEY": "your_servicefabricmanagementclient_api_key"
      }
    }
  }
}

Cursor

Settings → MCP Servers → Add

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

VS Code

Use with MCP extension

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

Configuration JSON

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

{
  "mcpServers": {
    "azure-com-servicefabric-application": {
      "command": "npx",
      "args": ["-y","@mcp/azure-com-servicefabric-application"],
      "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-application.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}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceFabric/clusters/{clusterName}/applicationTypes

Gets the list of application type name resources created in the specified Service Fabric cluster resource.

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

Gets a Service Fabric application type name resource.

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

Creates or updates a Service Fabric application type name resource.

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

Deletes a Service Fabric application type name resource.

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

Gets the list of application type version resources created in the specified Service Fabric application type name resource.

GET/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceFabric/clusters/{clusterName}/applicationTypes/{applicationTypeName}/versions/{version}

Gets a Service Fabric application type version resource.

PUT/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceFabric/clusters/{clusterName}/applicationTypes/{applicationTypeName}/versions/{version}

Creates or updates a Service Fabric application type version resource.

DELETE/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceFabric/clusters/{clusterName}/applicationTypes/{applicationTypeName}/versions/{version}

Deletes a Service Fabric application type version resource.

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

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