Skip to content
MCP-Bridge
Developer Tools

Update Management MCP Config

APIs for managing software update configurations.

Config URL

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

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

Configuration JSON

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

{
  "mcpServers": {
    "azure-com-automation-softwareupdateconfiguration": {
      "command": "npx",
      "args": ["-y","@mcp/azure-com-automation-softwareupdateconfiguration"],
      "env": {
      "UPDATE_MANAGEMENT_API_KEY": "your_update_management_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-automation-softwareupdateconfiguration.json

Environment Variables

UPDATE_MANAGEMENT_API_KEY

Replace your_update_management_api_key with your actual update management api key

Endpoints

GET/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Automation/automationAccounts/{automationAccountName}/softwareUpdateConfigurations

SoftwareUpdateConfigurations_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