Skip to content
VS Code

zola mcp for VS Code

io.github.chrischall/zola-mcp

Zola wedding planning for Claude — vendors, budget, guests, seating, registry, and RSVPs

client:VS Code transport:stdio runtime:npm

Install zola mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "zola-refresh-token",
      "description": "ZOLA_REFRESH_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "zola-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "zola-mcp"
      ],
      "env": {
        "ZOLA_REFRESH_TOKEN": "${input:zola-refresh-token}"
      }
    }
  }
}

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

zola mcp in other clients