PluginBench
MCP Server

io.github.gogogadgetbytes/planka MCP Server

io.github.gogogadgetbytes/planka

What is the io.github.gogogadgetbytes/planka MCP server?

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

How to install io.github.gogogadgetbytes/planka

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Environment / auth
  • PLANKA_BASE_URL
    required

    PLANKA server URL (e.g., https://planka.example.com)

  • PLANKA_AGENT_EMAIL
    required

    Email/username for PLANKA authentication

  • PLANKA_AGENT_PASSWORD
    required
    secret

    Password for PLANKA authentication

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "planka": {
      "command": "npx",
      "args": [
        "-y",
        "@gogogadgetbytes/planka-mcp"
      ],
      "env": {
        "PLANKA_BASE_URL": "<YOUR_PLANKA_BASE_URL>",
        "PLANKA_AGENT_EMAIL": "<YOUR_PLANKA_AGENT_EMAIL>",
        "PLANKA_AGENT_PASSWORD": "<YOUR_PLANKA_AGENT_PASSWORD>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "planka": {
      "command": "npx",
      "args": [
        "-y",
        "@gogogadgetbytes/planka-mcp"
      ],
      "env": {
        "PLANKA_BASE_URL": "<YOUR_PLANKA_BASE_URL>",
        "PLANKA_AGENT_EMAIL": "<YOUR_PLANKA_AGENT_EMAIL>",
        "PLANKA_AGENT_PASSWORD": "<YOUR_PLANKA_AGENT_PASSWORD>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "planka": {
      "command": "npx",
      "args": [
        "-y",
        "@gogogadgetbytes/planka-mcp"
      ],
      "env": {
        "PLANKA_BASE_URL": "<YOUR_PLANKA_BASE_URL>",
        "PLANKA_AGENT_EMAIL": "<YOUR_PLANKA_AGENT_EMAIL>",
        "PLANKA_AGENT_PASSWORD": "<YOUR_PLANKA_AGENT_PASSWORD>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "planka": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@gogogadgetbytes/planka-mcp"
      ],
      "env": {
        "PLANKA_BASE_URL": "<YOUR_PLANKA_BASE_URL>",
        "PLANKA_AGENT_EMAIL": "<YOUR_PLANKA_AGENT_EMAIL>",
        "PLANKA_AGENT_PASSWORD": "<YOUR_PLANKA_AGENT_PASSWORD>"
      }
    }
  }
}
Claude Code
claude mcp add planka --env PLANKA_BASE_URL=<YOUR_PLANKA_BASE_URL> --env PLANKA_AGENT_EMAIL=<YOUR_PLANKA_AGENT_EMAIL> --env PLANKA_AGENT_PASSWORD=<YOUR_PLANKA_AGENT_PASSWORD> -- npx -y @gogogadgetbytes/planka-mcp

Related MCP servers

MCP server for Obsidian Smart Connections. Semantic search using your vault's embeddings.

View repository →