Skip to content
VS Code

dingdawg devops agent for VS Code

io.github.dingdawg/dingdawg-devops-agent

DevOps AI. Deploy checks, incident analysis, infra audit. Learns from past failures.

client:VS Code transport:stdio runtime:npm

Install dingdawg devops agent in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "dingdawg-api-key",
      "description": "DINGDAWG_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "dingdawg-devops-agent": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "dingdawg-devops-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 devops agent in other clients