Skip to content
MCP-Bridge
Cloud Infrastructure

Guest Diagnostic Settings Association Claude Desktop Config

Add the Guest Diagnostic Settings Association 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-monitor-guestdiagnosticsettingsassociation-api": {
      "command": "npx",
      "args": [
        "-y",
        "@mcp/azure-com-monitor-guestdiagnosticsettingsassociation-api"
      ],
      "env": {
        "GUEST_DIAGNOSTIC_SETTINGS_ASSOCIATION_API_KEY": "your_guest_diagnostic_settings_association_api_key"
      }
    }
  }
}

Environment Variables

GUEST_DIAGNOSTIC_SETTINGS_ASSOCIATION_API_KEY

Replace your_guest_diagnostic_settings_association_api_key with your actual guest diagnostic settings association api key

Endpoints

GET/subscriptions/{subscriptionId}/providers/microsoft.insights/guestDiagnosticSettingsAssociations

GuestDiagnosticsSettingsAssociation_List

GET/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.insights/guestDiagnosticSettingsAssociations

GuestDiagnosticsSettingsAssociation_ListByResourceGroup

GET/{resourceUri}/providers/microsoft.insights/guestDiagnosticSettingsAssociation/{associationName}

GuestDiagnosticsSettingsAssociation_Get

PUT/{resourceUri}/providers/microsoft.insights/guestDiagnosticSettingsAssociation/{associationName}

GuestDiagnosticsSettingsAssociation_CreateOrUpdate

DELETE/{resourceUri}/providers/microsoft.insights/guestDiagnosticSettingsAssociation/{associationName}

GuestDiagnosticsSettingsAssociation_Delete

PATCH/{resourceUri}/providers/microsoft.insights/guestDiagnosticSettingsAssociation/{associationName}

GuestDiagnosticsSettingsAssociation_Update