Home/Servers/Datadog MCP Server

Datadog MCP Server

by Datadog ยท โญ 543 stars ยท updated 3 months ago

Monitoring and observability with Datadog. Query metrics, view logs, inspect dashboards, manage monitors, and analyze incidents through your AI assistant.

76
Good

Quality Score Breakdown

maintenance78/100
community74/100
documentation77/100
compatibility75/100

Use Cases

  • โœ“query metrics
  • โœ“view logs
  • โœ“manage monitors
  • โœ“analyze incidents

โšก One-Click Install Configs

Copy the config below and paste it into your AI client's config file.

๐Ÿค– Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "datadog": {
      "command": "python",
      "args": [
        "-m",
        "datadog_mcp"
      ],
      "env": {
        "DD_API_KEY": "YOUR_API_KEY",
        "DD_APP_KEY": "YOUR_APP_KEY"
      }
    }
  }
}
โšก Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "datadog": {
      "command": "python",
      "args": [
        "-m",
        "datadog_mcp"
      ],
      "env": {
        "DD_API_KEY": "YOUR_API_KEY",
        "DD_APP_KEY": "YOUR_APP_KEY"
      }
    }
  }
}
๐Ÿ’™ VS Code
.vscode/mcp.json
{
  "mcp": {
    "servers": {
      "datadog": {
        "command": "python",
        "args": [
          "-m",
          "datadog_mcp"
        ],
        "env": {
          "DD_API_KEY": "YOUR_API_KEY",
          "DD_APP_KEY": "YOUR_APP_KEY"
        }
      }
    }
  }
}
โ† Back to all servers