Skip to content
VS Code

Gatewerk for VS Code

io.github.gatewerk/mcp

The open-source review layer for AI agents. Work done for humans is decided by humans.

client:VS Code transport:stdio runtime:npm

Install Gatewerk in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "gatewerk-api-key",
      "description": "GATEWERK_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "gatewerk-url",
      "description": "GATEWERK_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "gatewerk-reviewer",
      "description": "GATEWERK_REVIEWER",
      "password": true
    }
  ],
  "servers": {
    "mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@gatewerk/mcp"
      ],
      "env": {
        "GATEWERK_API_KEY": "${input:gatewerk-api-key}",
        "GATEWERK_URL": "${input:gatewerk-url}",
        "GATEWERK_REVIEWER": "${input:gatewerk-reviewer}"
      }
    }
  }
}

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

Gatewerk in other clients