Skip to content
MCP-Bridge
Developer Tools

ContainerServiceClient MCP Config

The Container Service Client.

Config URL

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

https://mcp-bridge.pages.dev/config/azure-com-containerservice-managedclusters.json

Configuration JSON

Use curl https://mcp-bridge.pages.dev/config/azure-com-containerservice-managedclusters.json to fetch programmatically.

{
  "mcpServers": {
    "azure-com-containerservice-managedclusters": {
      "command": "npx",
      "args": ["-y","@mcp/azure-com-containerservice-managedclusters"],
      "env": {
      "CONTAINERSERVICECLIENT_API_KEY": "your_containerserviceclient_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://mcp-bridge.pages.dev/config/azure-com-containerservice-managedclusters.json

Environment Variables

CONTAINERSERVICECLIENT_API_KEY

Replace your_containerserviceclient_api_key with your actual containerserviceclient api key

Endpoints

GET/subscriptions/{subscriptionId}/providers/Microsoft.ContainerService/managedClusters

Gets a list of managed clusters in the specified subscription.

GET/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters

Lists managed clusters in the specified subscription and resource group.

GET/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}

Gets a managed cluster.

PUT/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}

Creates or updates a managed cluster.

DELETE/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}

Deletes a managed cluster.

GET/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/accessProfiles/{roleName}

Gets access profile of a managed cluster.

POST/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/accessProfiles/{roleName}/listCredential

Gets an access profile of a managed cluster.

GET/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/upgradeProfiles/default

Gets upgrade profile for a managed cluster.