Skip to content
MCP-Bridge
Cloud Infrastructure

Azure Alerts Management Service Resource Provider Claude Desktop Config

Add the Azure Alerts Management Service Resource Provider 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-alertsmanagement-alertsmanagement": {
      "command": "npx",
      "args": [
        "-y",
        "@mcp/azure-com-alertsmanagement-alertsmanagement"
      ],
      "env": {
        "AZURE_ALERTS_MANAGEMENT_SERVICE_RESOURCE_PROVIDER_API_KEY": "your_azure_alerts_management_service_resource_provider_api_key"
      }
    }
  }
}

Environment Variables

AZURE_ALERTS_MANAGEMENT_SERVICE_RESOURCE_PROVIDER_API_KEY

Replace your_azure_alerts_management_service_resource_provider_api_key with your actual azure alerts management service resource provider api key

Endpoints

GET/providers/Microsoft.AlertsManagement/operations

Operations_List

GET/subscriptions/{subscriptionId}/providers/Microsoft.AlertsManagement/alerts

Alerts_GetAll

GET/subscriptions/{subscriptionId}/providers/Microsoft.AlertsManagement/alerts/{alertId}

Get a specific alert.

POST/subscriptions/{subscriptionId}/providers/Microsoft.AlertsManagement/alerts/{alertId}/changestate

Alerts_ChangeState

GET/subscriptions/{subscriptionId}/providers/Microsoft.AlertsManagement/alerts/{alertId}/history

Alerts_GetHistory

GET/subscriptions/{subscriptionId}/providers/Microsoft.AlertsManagement/alertsSummary

Alerts_GetSummary

GET/subscriptions/{subscriptionId}/providers/Microsoft.AlertsManagement/smartGroups

Get all Smart Groups within a specified subscription

GET/subscriptions/{subscriptionId}/providers/Microsoft.AlertsManagement/smartGroups/{smartGroupId}

Get information related to a specific Smart Group.

POST/subscriptions/{subscriptionId}/providers/Microsoft.AlertsManagement/smartGroups/{smartGroupId}/changeState

SmartGroups_ChangeState

GET/subscriptions/{subscriptionId}/providers/Microsoft.AlertsManagement/smartGroups/{smartGroupId}/history

SmartGroups_GetHistory