Skip to content
VS Code

GitWarren for VS Code

io.github.klarluft/gitwarren

Code review on your own machine, for you and your coding agent. Nothing leaves your computer.

client:VS Code transport:stdio runtime:npm

Install GitWarren in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "gitwarren-data-dir",
      "description": "GITWARREN_DATA_DIR",
      "password": true
    }
  ],
  "servers": {
    "gitwarren": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "gitwarren"
      ],
      "env": {
        "GITWARREN_DATA_DIR": "${input:gitwarren-data-dir}"
      }
    }
  }
}

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

GitWarren in other clients