Skip to content
VS Code

GopherHole Agent Hub for VS Code

io.github.helixdata/gopherhole

Standards-based A2A hub. One MCP connection to thousands of agents, with shared persistent memory.

client:VS Code transport:stdio runtime:npm

Install GopherHole Agent Hub in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "gopherhole-api-key",
      "description": "GOPHERHOLE_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "gopherhole-api-url",
      "description": "GOPHERHOLE_API_URL",
      "password": true
    }
  ],
  "servers": {
    "gopherhole": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@gopherhole/mcp"
      ],
      "env": {
        "GOPHERHOLE_API_KEY": "${input:gopherhole-api-key}",
        "GOPHERHOLE_API_URL": "${input:gopherhole-api-url}"
      }
    }
  }
}

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

GopherHole Agent Hub in other clients