Skip to content
MCP-Bridge
Cloud Infrastructure

AzureDeploymentManager MCP Config

REST APIs for orchestrating deployments using the Azure Deployment Manager (ADM). See https://docs.microsoft.com/en-us/azure/azure-resource-manager/deployment-manager-overview for more information.

Config URL

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

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

Configuration JSON

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

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

Environment Variables

AZUREDEPLOYMENTMANAGER_API_KEY

Replace your_azuredeploymentmanager_api_key with your actual azuredeploymentmanager api key

Endpoints

GET/subscriptions/{subscriptionId}/providers/Microsoft.DeploymentManager/operations

Gets an operation resource.

GET/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DeploymentManager/artifactSources/{artifactSourceName}

Gets an artifact source.

PUT/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DeploymentManager/artifactSources/{artifactSourceName}

Creates or updates an artifact source.

DELETE/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DeploymentManager/artifactSources/{artifactSourceName}

Deletes an artifact source.

GET/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DeploymentManager/rollouts/{rolloutName}

Gets detailed information of a rollout.

PUT/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DeploymentManager/rollouts/{rolloutName}

Creates or updates a rollout.

DELETE/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DeploymentManager/rollouts/{rolloutName}

Deletes a rollout resource.

POST/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DeploymentManager/rollouts/{rolloutName}/cancel

Stops a running rollout.

POST/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DeploymentManager/rollouts/{rolloutName}/restart

Restarts a failed rollout and optionally skips all succeeded steps.

GET/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DeploymentManager/serviceTopologies/{serviceTopologyName}

Gets the service topology.