Skip to content
VS Code

zoekt mcp for VS Code

io.github.radiovisual/zoekt-mcp

Fast indexed code search for AI agents, powered by Sourcegraph Zoekt.

client:VS Code transport:stdio runtime:pypi

Install zoekt mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "zoekt-url",
      "description": "ZOEKT_URL",
      "password": true
    }
  ],
  "servers": {
    "zoekt-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "zoekt-mcp"
      ],
      "env": {
        "ZOEKT_URL": "${input:zoekt-url}"
      }
    }
  }
}

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

zoekt mcp in other clients