Skip to content
VS Code

confucius debug for VS Code

io.github.sstklen/confucius-debug

AI debugging with 980+ verified fixes. Search the YanHui KB — never repeat a mistake.

client:VS Code transport:stdio runtime:npm

Install confucius debug in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "confucius-lobster-id",
      "description": "CONFUCIUS_LOBSTER_ID",
      "password": true
    }
  ],
  "servers": {
    "confucius-debug": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "confucius-debug-mcp"
      ],
      "env": {
        "CONFUCIUS_LOBSTER_ID": "${input:confucius-lobster-id}"
      }
    }
  }
}

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

confucius debug in other clients