Skip to content
VS Code

CodeZaiku for VS Code

io.github.wyrdsekai/codezaiku

A coding and development harness on local models or hosted APIs: code, review, research, ops.

client:VS Code transport:stdio runtime:npm

Install CodeZaiku in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "codezaiku-drive",
      "description": "CODEZAIKU_DRIVE",
      "password": true
    }
  ],
  "servers": {
    "codezaiku": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@wyrdsekai/codezaiku-mcp"
      ],
      "env": {
        "CODEZAIKU_DRIVE": "${input:codezaiku-drive}"
      }
    }
  }
}

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

CodeZaiku in other clients