Update Management Claude Desktop Config
Add the Update Management 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-automation-softwareupdateconfiguration": {
"command": "npx",
"args": [
"-y",
"@mcp/azure-com-automation-softwareupdateconfiguration"
],
"env": {
"UPDATE_MANAGEMENT_API_KEY": "your_update_management_api_key"
}
}
}
}Environment Variables
UPDATE_MANAGEMENT_API_KEYReplace your_update_management_api_key with your actual update management api key
Endpoints
GET
/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Automation/automationAccounts/{automationAccountName}/softwareUpdateConfigurationsSoftwareUpdateConfigurations_List
GET
/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Automation/automationAccounts/{automationAccountName}/softwareUpdateConfigurations/{softwareUpdateConfigurationName}SoftwareUpdateConfigurations_GetByName
PUT
/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Automation/automationAccounts/{automationAccountName}/softwareUpdateConfigurations/{softwareUpdateConfigurationName}SoftwareUpdateConfigurations_Create
DELETE
/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Automation/automationAccounts/{automationAccountName}/softwareUpdateConfigurations/{softwareUpdateConfigurationName}SoftwareUpdateConfigurations_Delete