Skip to content
VS Code

zaai dev mcp for VS Code

io.github.poloniboi/zaai-dev-mcp

Zaai Dev brand brief + captured design references for MCP-compatible AI tools.

client:VS Code transport:stdio runtime:npm

Install zaai dev mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "zaai-api-token",
      "description": "ZAAI_API_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "zaai-api-url",
      "description": "ZAAI_API_URL",
      "password": true
    }
  ],
  "servers": {
    "zaai-dev-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@zaai-dev/mcp"
      ],
      "env": {
        "ZAAI_API_TOKEN": "${input:zaai-api-token}",
        "ZAAI_API_URL": "${input:zaai-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

zaai dev mcp in other clients