MCP Server for Datadog API
MCP Server for Datadog API. That is what the datadog mcp server brings to an AI assistant: the same capability, reachable through the Model Context Protocol rather than a separate app or dashboard.
A Model Context Protocol (MCP) server for interacting with the Datadog API.
The server publishes 12 tools. What each one is for:
MacOS — ~/Library/Application Support/Claude/claude_desktop_config.jsonWindows — %APPDATA%/Claude/claude_desktop_config.jsonget-monitors — Fetch monitors with optional filteringget-monitor — Get details of a specific monitor by IDget-dashboards — List all dashboardsget-dashboard — Get a specific dashboard by IDget-metrics — List available metricsget-metric-metadata — Get metadata for a specific metricget-events — Fetch events within a time rangeget-incidents — List incidents with optional filteringsearch-logs — Search logs with advanced query filteringaggregate-logs — Perform analytics and aggregations on log dataThe server ships on npm as @modelcontextprotocol/inspector, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.
Configuration is passed through the environment: DD_API_KEY, DD_APP_KEY, YOUR_API_KEY, YOUR_APP_KEY. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.
Among the monitoring and observability options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Datadog's toolset — MacOS, Windows, get-monitors and 9 more — is a fair guide to whether it matches your workflow. It is maintained by GeLi2001; worth a glance at recent repository activity before you build anything load-bearing on it.
This entry was verified against Datadog's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.
| Tool | What it does |
|---|---|
| MacOS | ~/Library/Application Support/Claude/claude_desktop_config.json |
| Windows | %APPDATA%/Claude/claude_desktop_config.json |
| get-monitors | Fetch monitors with optional filtering |
| get-monitor | Get details of a specific monitor by ID |
| get-dashboards | List all dashboards |
| get-dashboard | Get a specific dashboard by ID |
| get-metrics | List available metrics |
| get-metric-metadata | Get metadata for a specific metric |
| get-events | Fetch events within a time range |
| get-incidents | List incidents with optional filtering |
| search-logs | Search logs with advanced query filtering |
| aggregate-logs | Perform analytics and aggregations on log data |
{
"mcpServers": {
"datadog": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/inspector"],
"env": {
"DD_API_KEY": "your-value",
"DD_APP_KEY": "your-value",
"YOUR_API_KEY": "your-value",
"YOUR_APP_KEY": "your-value"
}
}
}
}Add to claude_desktop_config.json, then restart Claude Desktop.
| Variable | Description | Required |
|---|---|---|
| DD_API_KEY | Credential the server authenticates with. | Yes |
| DD_APP_KEY | Credential the server authenticates with. | Yes |
| YOUR_API_KEY | Credential the server authenticates with. | Yes |
| YOUR_APP_KEY | Credential the server authenticates with. | Yes |
Give your coding agent the full DevTools toolbox: traces, network, console, heap snapshots and Lighthouse.
Dashboards, Prometheus and Loki queries, incidents and alerts — observability by conversation.
Errors with full context — stack traces, issue triage and AI-powered root-cause analysis from Sentry's server.
Enables enhanced web research capabilities for large language models through intelligent search queuing and advanced content extraction.
Automates browser interactions and enables Large Language Models (LLMs) to interact with web pages through Playwright and Chrome DevTools Protocol
Guides tool usage by providing recommendations for MCP tools at each problem-solving stage.