Skip to content
VS Code

dingdawg planning agent for VS Code

io.github.dingdawg/dingdawg-planning-agent

Planning AI. Sprint estimation, task breakdown, risk analysis. Learns your velocity.

client:VS Code transport:stdio runtime:npm

Install dingdawg planning agent in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "dingdawg-api-key",
      "description": "DINGDAWG_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "dingdawg-planning-agent": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "dingdawg-planning-agent"
      ],
      "env": {
        "DINGDAWG_API_KEY": "${input:dingdawg-api-key}"
      }
    }
  }
}

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

dingdawg planning agent in other clients