Skip to content
VS Code

mcp server zuuna for VS Code

io.github.kenzotp/mcp-server-zuuna

MCP server for Zuuna: coding agents work your git-truth kanban board via the v1 API. 67 tools.

client:VS Code transport:stdio runtime:npm

Install mcp server zuuna in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "zuuna-api-token",
      "description": "ZUUNA_API_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "zuuna-base-url",
      "description": "ZUUNA_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "zuuna-timeout-ms",
      "description": "ZUUNA_TIMEOUT_MS",
      "password": true
    }
  ],
  "servers": {
    "mcp-server-zuuna": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "mcp-server-zuuna"
      ],
      "env": {
        "ZUUNA_API_TOKEN": "${input:zuuna-api-token}",
        "ZUUNA_BASE_URL": "${input:zuuna-base-url}",
        "ZUUNA_TIMEOUT_MS": "${input:zuuna-timeout-ms}"
      }
    }
  }
}

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

mcp server zuuna in other clients