Skip to content
MCP-Bridge
Developer Tools

ContainerInstanceManagementClient MCP Config

ContainerInstanceManagementClient API

Config URL

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

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

Configuration JSON

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

{
  "mcpServers": {
    "azure-com-containerinstance-containerinstance": {
      "command": "npx",
      "args": ["-y","@mcp/azure-com-containerinstance-containerinstance"],
      "env": {
      "CONTAINERINSTANCEMANAGEMENTCLIENT_API_KEY": "your_containerinstancemanagementclient_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-containerinstance-containerinstance.json

Environment Variables

CONTAINERINSTANCEMANAGEMENTCLIENT_API_KEY

Replace your_containerinstancemanagementclient_api_key with your actual containerinstancemanagementclient api key

Endpoints

GET/subscriptions/{subscriptionId}/providers/Microsoft.ContainerInstance/containerGroups

Get a list of container groups in the specified subscription.

GET/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerInstance/containerGroups

Get a list of container groups in the specified subscription and resource group.

GET/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerInstance/containerGroups/{containerGroupName}

Get the properties of the specified container group.

PUT/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerInstance/containerGroups/{containerGroupName}

Create or update container groups.

DELETE/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerInstance/containerGroups/{containerGroupName}

Delete the specified container group.

GET/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerInstance/containerGroups/{containerGroupName}/containers/{containerName}/logs

Get the logs for a specified container instance.