Skip to content
MCP-Bridge
Cloud Infrastructure

AzureDeploymentManager Claude Desktop Config

Add the AzureDeploymentManager MCP server to Claude Desktop with this ready-to-use configuration.

Setup Instructions

  1. Open Claude Desktop
  2. Go to Settings → Developer → Edit Config → claude_desktop_config.json
  3. Paste the JSON below into the file
  4. Set your credentials in the env section
  5. Restart Claude Desktop

Configuration JSON

Copy the entire block into your claude_desktop_config.json

{
  "mcpServers": {
    "azure-com-deploymentmanager": {
      "command": "npx",
      "args": [
        "-y",
        "@mcp/azure-com-deploymentmanager"
      ],
      "env": {
        "AZUREDEPLOYMENTMANAGER_API_KEY": "your_azuredeploymentmanager_api_key"
      }
    }
  }
}

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.