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