planka-mcp
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-mcpWork through my task queue"
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
An MCP server that lets an AI agent autonomously pick up and complete work on a Planka board.
It is not a wrapper around the Planka REST API. The tool surface is shaped around what an autonomous worker actually does — find ready work, claim it, report on it — and the guardrails are enforced in code, not in prompt text.
Vocabulary
The tools speak your words, not Planka's schema:
You say | Planka calls it | What it is |
board | project | the container (a tab strip) |
project | board | the tab you actually work in: lists, cards, members |
task | card | one piece of work |
Related MCP server: Project Manager MCP
What the agent sees
Doing work
Tool | Purpose |
| Pre-filtered queue of genuinely ready work, most urgent first |
| Search every project — other people's work included — by text, assignee, status, label or overdue. A person's results cover task assignment, checklist items and comment mentions |
| Atomic claim; |
| Full detail of a chosen task |
|
|
| Report output, context, deliverables |
Shaping work
Tool | Purpose |
| File and refine work |
| Add steps, tick them off, reopen them |
| Change priority/size (both are labels in Planka) |
| Move to any list, including stages outside the status flow, or to another project |
Structure
Tool | Purpose |
| Discover containers, tabs, and your role on each |
| New tab with workflow lists; rename |
| Stages; retire via |
| Create, rename, delete-if-unused |
People
Tool | Purpose |
| What this server may do, and under what ceiling |
| Project members with roles, or the whole directory |
| Put people on a task, adding them to the project first |
| Add, re-role ( |
| Work handed over in a comment but never actually assigned |
| Instance roles, board managers, API key minting and revocation — off unless enabled |
Plus one prompt, “Work through my task queue”, as a one-click entry point.
Roles
Planka 2.4.1 has two role axes, and the swagger documents neither correctly:
instance role (admin, projectOwner, boardUser, guestOnly) and board
membership role (editor, worker, guest). This server folds them into one
effective role per project:
Condition | Effective role | Can |
instance |
| everything, incl. membership |
board membership |
| work, author, assign, structure |
board membership |
| work on tasks; no structure, no assigning others |
|
| read only |
PLANKA_ACT_AS=worker|editor|admin lowers that ceiling but never raises it — one
admin credential can still run a deliberately limited agent. Every refusal names
the role, where it came from, and what was attempted.
How Planka concepts are mapped
Planka has no status, priority or effort field, so the server derives them:
Status = which list the card is in. List names are matched by heuristic (
backlog/todo/ready→todo,doing/in progress/wip→in_progress,review/qa→review,done/closed→done). Lists of typewaiting/inactive, and Planka's own system lists, are outside the flow; typeclosedcounts as done. Override the mapping withPLANKA_STATUS_LISTS(see.env.example).Priority comes from label conventions (
p0/urgent/critical→ urgent,p1/high,p2/medium,p3/low), defaulting to medium.Effort comes from size labels (
size: M,small,XL) or point labels (sp: 3), falling back to the subtask count.Dependencies come from checklist tasks that link to another card (
linkedCardId). Reported aswaiting_oninget_task; only used as a filter whenPLANKA_REQUIRE_DEPS_MET=true.
What counts as actionable
A card is returned by list_actionable_tasks when all of these hold:
it sits in a list mapped to
todo, and that list is of typeactive;the card is not closed;
it has no assignees, or the agent's own account is one of them;
it is on a
projectboard —libraryandcollectionboards hold documents, not work (PLANKA_BOARD_TYPES);its board is inside
PLANKA_BOARD_IDS, when that allowlist is set.
Two further filters exist but are off by default: PLANKA_BLOCKED_LABELS
(hide cards carrying e.g. a blocked label) and PLANKA_REQUIRE_DEPS_MET
(hide cards whose linked dependency cards are unfinished).
How claiming is made safe
Planka has no compare-and-swap on card fields, but card assignment is a unique
row (cardId + userId), and the API answers 409 when it already exists. So:
read the card fresh; if someone else is assigned →
already_taken;POSTthe assignment —200= claimed,409= you already held it (idempotent, so a retried call is harmless);re-read and compare assignment timestamps; if another worker's row is older, the server removes its own row and reports
already_taken.
Caveat, stated plainly: step 1→2 is a read-then-write. Two different
accounts writing inside the same few milliseconds are resolved by the step-3
reconcile, not prevented outright. Two runs of the same agent account cannot
double-claim — the 409 makes that path genuinely atomic.
Guardrails enforced in code
Nothing that holds work is deleted.
delete_listrefuses a list containing cards;manage_labelsrefuses a label still on a card; there is no tool to delete a task, comment, project or board. Retiring a stage is a type change toinactive, which is reversible.Credentials are handled explicitly. Minting an API key requires
PLANKA_ALLOW_USER_ADMIN=trueplus an instance-admin account, reports whether it replaced an existing key, and refuses to touch the key this server is itself authenticating with.Other people's work is untouchable. Editing, moving, relabelling or releasing a task claimed by someone else is refused.
Claims are only ever for yourself.
claim_task/release_tasktake no user parameter; assigning others is a separate, higher-privileged tool.Role is checked per project, per action, and a refusal explains why.
Escalation is blocked.
admin_manage_personis off unlessPLANKA_ALLOW_USER_ADMIN=true, and even then it will not change its own account's role, grant instanceadmin, or create an account (that needs a password, which this server never handles).set_project_memberswill not remove its own access.Status transitions are validated;
doneis terminal unlessPLANKA_ALLOW_REOPEN=true.add_resulttakes an idempotency key, so a retry cannot double-post.attach_linkacceptshttp/httpsonly.PLANKA_BOARD_IDShard-scopes every tool to specific projects.
Tests
.venv/bin/python -m pytest tests -q65 offline tests run against an in-memory fake that reproduces Planka's
semantics — assignment unique on card+user with 409 on re-insert, cards in a
closed list finished by the server, board role separate from instance role.
They cover: claim → idempotent re-claim → lost-race rollback; illegal
transitions and done terminality; ownership checks on status/result/release/
edit/move; the board allowlist; role folding across both axes and the
PLANKA_ACT_AS cap; worker-vs-editor-vs-admin gating; the assign-and-add-as-
worker flow with ambiguity refusal; refusal to delete non-empty lists or in-use
labels; refusal to self-remove or self-promote.
Setup
Nothing to install or clone. Add this to your MCP client config, fill in three values, restart:
{
"mcpServers": {
"planka": {
"command": "uvx",
"args": ["--refresh-package", "planka-mcp", "--from", "https://github.com/KT-SPARKS/planka-mcp/releases/latest/download/planka_mcp-latest.tar.gz", "planka-mcp"],
"env": {
"PLANKA_BASE_URL": "https://planka.example.com",
"PLANKA_EMAIL": "you@example.com",
"PLANKA_PASSWORD": "your-password"
}
}
}
}That URL always resolves to the newest release, and --refresh-package makes
uv check for a new build on every launch — so restarting your client is the
whole update process. Drop the flag and you stay on whatever version you first
downloaded, because uv caches by URL.
Prefer an API key over a password (Planka: user settings → API key):
"env": {
"PLANKA_BASE_URL": "https://planka.example.com",
"PLANKA_API_KEY": "your-api-key"
}Claude Code, one line:
claude mcp add planka --env PLANKA_BASE_URL=https://planka.example.com --env PLANKA_API_KEY=your-api-key -- uvx --refresh-package planka-mcp --from https://github.com/KT-SPARKS/planka-mcp/releases/latest/download/planka_mcp-latest.tar.gz planka-mcpTo pin a version instead, point at that release's wheel and drop the refresh flag:
"args": ["--from", "https://github.com/KT-SPARKS/planka-mcp/releases/download/v0.1.5/planka_mcp-0.1.5-py3-none-any.whl", "planka-mcp"]That is the whole setup. Everything below is optional.
Two things trip up the Windows desktop app:
uvxnot found — the app spawns the command directly, so give the full path, with doubled backslashes:"command": "C:\\Users\\You\\AppData\\Local\\hermes\\bin\\uvx.exe". Find it withwhere uvx.Git executable not found— anenvblock replaces the process environment, so agit+https://...source cannot run git. The release URLs above need no git and avoid this entirely. If you do want to install from source on Windows, add"PATH"to theenvblock.
Config lives at %APPDATA%\Claude\claude_desktop_config.json. Quit from the
tray icon and reopen — closing the window does not restart the app.
The setup above gives the agent whatever the account can do. To narrow it:
"env": {
"PLANKA_BASE_URL": "https://planka.example.com",
"PLANKA_API_KEY": "your-api-key",
"PLANKA_BOARD_IDS": "1234567890123456789",
"PLANKA_ACT_AS": "worker"
}PLANKA_BOARD_IDS— every tool refuses anything outside these projects.PLANKA_ACT_AS— ceiling ofguest,worker,editororadmin, applied on top of the account's real rights.
Better still, create a dedicated Planka user for the agent, add it to just the
boards it should touch as a worker, and use its API key — rather than pointing
this at an admin account.
From source (needs git available to the process):
uvx --from git+https://github.com/KT-SPARKS/planka-mcp planka-mcpFor development:
git clone https://github.com/KT-SPARKS/planka-mcp.git
cd planka-mcp
uv venv && uv pip install -e .
cp .env.example .env # only read in this mode
.venv/bin/planka-mcpFull configuration reference — every environment variable, status mapping, HTTP transport — is in docs/configuration.md.
Notes on the live API
Developed and verified against Planka 2.4.1, whose published swagger (2.0.1) lags the server in several places — different role names, different list types, undocumented routes. Everything learned from the live instance — spec drift, permission rules, the private→shared conversion, the claim/CAS semantics, the Cloudflare WAF gotcha — is written up in docs/planka-api-notes.md.
Errors from Planka are returned to the model as clean
{"ok": false, "error": "..."} results rather than raised as exceptions.
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
- Alicense-qualityCmaintenanceEnables AI assistants to interact with Planka, a real-time Kanban board application, for managing projects, boards, lists, cards, and more.Last updated635MIT
- Alicense-qualityDmaintenanceEnables AI agents to manage projects, epics, and tasks with atomic locking, real-time dashboard, and multi-agent coordination.Last updatedMIT
- AlicenseAqualityFmaintenanceMCP server enabling AI agents to manage PLANKA kanban boards with full CRUD support for cards, tasks, labels, comments, and lists.Last updated15658MIT
- Alicense-qualityDmaintenanceEnables AI assistants to manage Planka kanban boards, including creating, updating, and organizing tasks, lists, and cards via MCP.Last updated1455MIT
Related MCP Connectors
Coding agents from Claude Code, Cursor and Codex claim jobs and lock files on one shared board.
Create and manage AI agents that collaborate and solve problems through natural language interacti…
Sovereign Agent OS — Persistent Memory, Governance & Compliance for AI Agents.
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/KT-SPARKS/planka-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server