Skip to content
MCP-BridgeMCP-Bridge
AI & ML

Application Insights Data Plane MCP Config

This API exposes AI metric & event information and associated metadata

Config URL

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

https://mcpbridge.org/config/azure-com-applicationinsights-swagger.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-applicationinsights-swagger": {
      "command": "npx",
      "args": [
        "-y",
        "@mcp/azure-com-applicationinsights-swagger"
      ],
      "env": {
        "APPLICATION_INSIGHTS_DATA_PLANE_API_KEY": "your_application_insights_data_plane_api_key"
      }
    }
  }
}

Cursor

Settings → MCP Servers → Add

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

VS Code

Use with MCP extension

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

Configuration JSON

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

{
  "mcpServers": {
    "azure-com-applicationinsights-swagger": {
      "command": "npx",
      "args": ["-y","@mcp/azure-com-applicationinsights-swagger"],
      "env": {
      "APPLICATION_INSIGHTS_DATA_PLANE_API_KEY": "your_application_insights_data_plane_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-applicationinsights-swagger.json

Environment Variables

APPLICATION_INSIGHTS_DATA_PLANE_API_KEY

Replace your_application_insights_data_plane_api_key with your actual application insights data plane api key

Endpoints

GET/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.Insights/components/{applicationName}/events/$metadata

Get OData metadata

GET/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.Insights/components/{applicationName}/events/{eventType}

Execute OData query

GET/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.Insights/components/{applicationName}/events/{eventType}/{eventId}

Get an event

GET/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.Insights/components/{applicationName}/metrics/metadata

Retrieve metric metadata

GET/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.Insights/components/{applicationName}/metrics/{metricId}

Retrieve metric data

GET/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.Insights/components/{applicationName}/query

Execute an Analytics query

POST/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.Insights/components/{applicationName}/query

Execute an Analytics query