Skip to content
VS Code

Dr.Deploy for VS Code

io.github.dr-deploy/drdeploy-mcp

MCP tools for drdeploy: scan deployed sites, list, get findings, check status.

client:VS Code transport:stdio runtime:npm

Install Dr.Deploy in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "drdeploy-token",
      "description": "DRDEPLOY_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "drdeploy-api-host",
      "description": "DRDEPLOY_API_HOST",
      "password": true
    }
  ],
  "servers": {
    "drdeploy-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@drdeploy/mcp"
      ],
      "env": {
        "DRDEPLOY_TOKEN": "${input:drdeploy-token}",
        "DRDEPLOY_API_HOST": "${input:drdeploy-api-host}"
      }
    }
  }
}

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

Dr.Deploy in other clients