Skip to content
MCP-BridgeMCP-Bridge
Cloud Infrastructure

Azure Alerts Management Service Resource Provider MCP Config

Azure Alerts Management Service provides a single pane of glass of alerts across Azure Monitor.

Config URL

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

https://mcpbridge.org/config/azure-com-alertsmanagement-alertsmanagement.json

One-Click Install

Copy the snippet for your MCP client and paste it in — zero editing required.

Claude Desktop

Add to 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"
      }
    }
  }
}

Cursor

Settings → MCP Servers → Add

{
  "mcpServers": {
    "azure-com-alertsmanagement-alertsmanagement": {
      "url": "https://mcpbridge.org/config/azure-com-alertsmanagement-alertsmanagement.json"
    }
  }
}

VS Code

Use with MCP extension

{
  "mcpServers": {
    "azure-com-alertsmanagement-alertsmanagement": {
      "url": "https://mcpbridge.org/config/azure-com-alertsmanagement-alertsmanagement.json"
    }
  }
}

Configuration JSON

Use curl https://mcpbridge.org/config/azure-com-alertsmanagement-alertsmanagement.json to fetch programmatically.

{
  "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"
}
    }
  }
}

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://mcpbridge.org/config/azure-com-alertsmanagement-alertsmanagement.json

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