AzureDeploymentManager Claude Desktop Config
Add the AzureDeploymentManager MCP server to Claude Desktop with this ready-to-use configuration.
Setup Instructions
- Open Claude Desktop
- Go to Settings → Developer → Edit Config →
claude_desktop_config.json - Paste the JSON below into the file
- Set your credentials in the
envsection - 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_KEYReplace your_azuredeploymentmanager_api_key with your actual azuredeploymentmanager api key
Endpoints
GET
/subscriptions/{subscriptionId}/providers/Microsoft.DeploymentManager/operationsGets 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}/cancelStops a running rollout.
POST
/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DeploymentManager/rollouts/{rolloutName}/restartRestarts a failed rollout and optionally skips all succeeded steps.
GET
/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DeploymentManager/serviceTopologies/{serviceTopologyName}Gets the service topology.