Skip to content
VS Code

zoogent for VS Code

io.github.bepunk/zoogent

AI agent orchestrator with Architect AI. Multi-team, web dashboard, 35+ MCP tools.

client:VS Code transport:stdio runtime:npm

Install zoogent in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "zoogent-url",
      "description": "ZOOGENT_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "zoogent-api-key",
      "description": "ZOOGENT_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "zoogent": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "zoogent"
      ],
      "env": {
        "ZOOGENT_URL": "${input:zoogent-url}",
        "ZOOGENT_API_KEY": "${input:zoogent-api-key}"
      }
    }
  }
}

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

zoogent in other clients