Skip to content
VS Code

zoo mcp for VS Code

io.github.kittycad/zoo-mcp

An MCP server that provides access to the Zoo API for various CAD operations and tools.

client:VS Code transport:stdio runtime:pypi

Install zoo mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "zoo-token",
      "description": "ZOO_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "zoo-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "zoo_mcp"
      ],
      "env": {
        "ZOO_TOKEN": "${input:zoo-token}"
      }
    }
  }
}

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

zoo mcp in other clients