Skip to content
VS Code

mcp for VS Code

io.github.dojogenesis/mcp

Practice library for coding agents: skill search/invoke, seed patches, scout, reflect, ADR writer

client:VS Code transport:stdio runtime:oci

Install mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "dojo-skills-path",
      "description": "DOJO_SKILLS_PATH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "dojo-adr-path",
      "description": "DOJO_ADR_PATH",
      "password": true
    }
  ],
  "servers": {
    "mcp": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/dojogenesis/mcp:3.2.1"
      ],
      "env": {
        "DOJO_SKILLS_PATH": "${input:dojo-skills-path}",
        "DOJO_ADR_PATH": "${input:dojo-adr-path}"
      }
    }
  }
}

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

mcp in other clients