Skip to content
VS Code

planka for VS Code

io.github.gogogadgetbytes/planka

MCP server for PLANKA kanban boards. Full CRUD for cards, tasks, comments, and labels.

client:VS Code transport:stdio runtime:npm

Install planka in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "planka-base-url",
      "description": "PLANKA_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "planka-agent-email",
      "description": "PLANKA_AGENT_EMAIL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "planka-agent-password",
      "description": "PLANKA_AGENT_PASSWORD",
      "password": true
    }
  ],
  "servers": {
    "planka": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@gogogadgetbytes/planka-mcp"
      ],
      "env": {
        "PLANKA_BASE_URL": "${input:planka-base-url}",
        "PLANKA_AGENT_EMAIL": "${input:planka-agent-email}",
        "PLANKA_AGENT_PASSWORD": "${input:planka-agent-password}"
      }
    }
  }
}

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

planka in other clients