Skip to content
VS Code

datadog for VS Code

io.github.us-all/datadog

Datadog MCP — 165 tools for metrics, monitors, logs, APM, RUM, incidents, CI/CD, fleet

client:VS Code transport:stdio runtime:npm

Install datadog in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "dd-api-key",
      "description": "DD_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "dd-app-key",
      "description": "DD_APP_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "dd-site",
      "description": "DD_SITE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "dd-tools",
      "description": "DD_TOOLS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "dd-disable",
      "description": "DD_DISABLE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "dd-allow-write",
      "description": "DD_ALLOW_WRITE",
      "password": true
    }
  ],
  "servers": {
    "datadog": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@us-all/datadog-mcp"
      ],
      "env": {
        "DD_API_KEY": "${input:dd-api-key}",
        "DD_APP_KEY": "${input:dd-app-key}",
        "DD_SITE": "${input:dd-site}",
        "DD_TOOLS": "${input:dd-tools}",
        "DD_DISABLE": "${input:dd-disable}",
        "DD_ALLOW_WRITE": "${input:dd-allow-write}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

datadog in other clients