Planka MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Planka MCP ServerShow me the lists on my board"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Planka MCP Server (multi-user, remote-hosted)
Forked from bradrisse/kanban-mcp and adapted for:
Streamable HTTP transport (so it can be hosted remotely, e.g. Cloud Run) instead of stdio (local-only)
Per-user authentication — every caller uses their own Planka account and permissions, instead of one shared service account
How auth works
This server holds no Planka credentials of its own. Each person who wants to use it:
Generates their own long-lived Planka access token once, by POSTing their email/password to their Planka instance:
curl -X POST https://planka.blappsdev.com/api/access-tokens \ -H "Content-Type: application/json" \ -d '{"emailOrUsername": "your@email.com", "password": "your-password"}'The response's
itemfield is the token — a long JWT string. This is the only time your password is used; the token is what gets used from here on.Uses that token as a Bearer token when connecting this MCP server in Claude — every tool call gets forwarded to Planka using that specific token, so Planka's own permission system decides what each person can and can't do. Full control for an admin, restricted access for a regular member — the MCP server itself has no separate notion of roles.
Related MCP server: Another Planka MCP
Gamification support
This server targets a Planka fork with an XP/level/badge system built on top of card completion (see that repo's README for the full feature). A few things to know when using it:
Every card carries a
baseXpvalue.planka_create(resourceTypecardorcard_with_tasks) defaults it to10if you don't pass one — Planka requires every card to have a value, so this keeps card creation simple when XP isn't the point of the call.Cards can also carry an optional
softDueDate— completing the card on or before it grants bonus XP; missing it costs nothing. Editable viaplanka_update(passnullto clear it) and settable at creation.planka_getwithresourceType: "gamification_stats"andid: "me"(or a specific user ID) returns that user's XP, level, progress to the next level, completion/on-time counts, and the full badge catalog annotated with which ones are unlocked and when.Every card object returned by
planka_get/planka_create/planka_update(including insideboard_summaryandcard_details) carriesbaseXp,softDueDate, andbonusAwardedalongside its normal fields.
Environment variables (Cloud Run)
PLANKA_BASE_URL— your Planka instance URL, e.g.https://planka.blappsdev.comPORT— set automatically by Cloud Run, no action needed
Local test
npm install
npm run build
PORT=8080 PLANKA_BASE_URL=https://planka.blappsdev.com node dist/index.jsDeploy to Cloud Run
See deployment instructions provided separately.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityDmaintenanceA Model Context Protocol server that enables AI assistants like Claude to interact directly with Planka Kanban boards, allowing automated management of projects, tasks, and workflows through conversational interfaces.Last updated8421MIT
- Flicense-qualityDmaintenanceAn MCP server that enables AI assistants to interact with self-hosted Planka boards through the Planka REST API. It allows users to list, search, create, and update projects, boards, and cards using natural language.Last updated2
- Alicense-qualityCmaintenanceEnables AI assistants to interact with Planka, a real-time Kanban board application, for managing projects, boards, lists, cards, and more.Last updated635MIT
- AlicenseAqualityFmaintenanceMCP server enabling AI agents to manage PLANKA kanban boards with full CRUD support for cards, tasks, labels, comments, and lists.Last updated15658MIT
Related MCP Connectors
MCP-native open-source Notion alternative: read & write pages, databases and kanban boards.
Personal assistant MCP server with search, execute, packages, jobs, secrets, and integrations.
MCP server for Argo RPG Platform — connects AI assistants to campaign data via OAuth2
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/vicsvegeo/planka-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server