Planka 2.x MCP server with verified card, task, comment, label, and list operations.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag β we're steadily working through the catalog.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Control a Planka 2.x board from Claude Code through 41 MCP tools. Writes are re-read and verified, so a reported success matches the board. An optional workflow turns that board into durable memory for agent work.
[!WARNING] The old
@gogogadgetbytes/planka-mcppackage can report success while doing nothing on Planka 2.x. Read the five silent-failure gotchas before replacing an existing installation.
MCP is a standard that lets Claude Code call tools provided by another program.
This repository runs a small local program that translates those tool calls into Planka API requests.
It needs Planka credentials because it acts as a dedicated Planka user, not as Claude itself.
The credentials stay on your machine and are never written into the project-level .mcp.json file.
Claude Code loads MCP servers when a session starts, so restart it after setup or configuration changes.
npxLinux and macOS are supported. No Bun runtime is required.
One command per client. All of them run the published package with npx, so
there is nothing to clone and nothing to build.
The Cursor and VS Code links carry a placeholder key, never a real one: a
deeplink ends up in browser history. Both clients ask for the credential
themselves β VS Code through a promptString input, so the committed
.vscode/mcp.json holds no secret.
planka-mcp initWith a terminal attached it asks for what it needs; --base-url, --api-key,
--board, --email and --password make it non-interactive. Before writing
anything it runs one authenticated GET /api/users/me, which is what catches a
base URL pointing at the SPA instead of the API, or a credential that never
worked. --dry-run prints the exact change and touches nothing.
Every emitter merges: an existing planka entry is reported and left alone,
and the other servers in the same file are preserved. Files written into your
home directory get mode 0600.
./scripts/setup.sh is an alias for init --client claude. The older guided
installer β the one that also picks or creates a board and runs the full
create/label/comment/delete smoke test β is still node scripts/setup.mjs.
The plugin installs the MCP server, the two workflow skills, and a SessionStart
preflight that catches a missing credential or an http:// base URL before the
first tool call:
Claude Code asks for the base URL and the API key when the plugin is enabled and
stores the key in the OS keychain, not in settings.json. Codex reads the same
repository through .codex-plugin/plugin.json and
.agents/plugins/marketplace.json.
Plugins cannot ship permission rules, which is the one thing that does not
travel: use PLANKA_READ_ONLY and PLANKA_DISABLED_TOOLS (below) instead of a
client-side deny list β they work in every runtime and cost no context.
env blockcodex mcp add does not take credentials, so add them to
~/.codex/config.toml (or let init --client codex do it):
First, inspect Claude Code's configuration:
Then fully restart Claude Code β MCP servers are loaded when a session starts. If
you configured the server in a project's .mcp.json, open Claude Code in that
project and approve the project-scoped server when prompted. If you installed the
plugin, /plugin shows it, and its Errors tab shows a server that failed to
start.
Ask Claude Code:
If Claude cannot see the tools, restart first and then follow Troubleshooting.
Two ways to authenticate, and they are mutually exclusive: setting both is a
configuration error, because Planka reads Authorization first and silently
ignores x-api-key when both arrive.
PLANKA_API_KEY (recommended) | PLANKA_AGENT_EMAIL + PLANKA_AGENT_PASSWORD | |
|---|---|---|
| Sent as | X-Api-Key: <prefix>_<secret> on every request | POST /api/access-tokens, then Authorization: Bearer |
| Login round-trip | none | one per session, refreshed every 25 minutes |
| Sign-in rate limit | not subject to it | 10 logins per identity per 60 s β reached fast when several agents start at once |
| Password on disk | none | yes, in the client's configuration file |
| Attachment downloads | works | works |
Four steps, run by a Planka admin. The result is a user that can only ever see the boards you name β enforced by Planka itself, not by this server.
Create the user with the lowest global role. In the Planka UI:
Administration β Users β Add user, role boardUser. A boardUser
cannot create projects and cannot grant itself memberships.
Give it membership on the boards it should work on, and only those:
Use "role":"viewer" for an agent that should read and comment but never
create or move cards. GET /api/projects then returns only the projects
derived from these memberships; every other board answers 404.
Issue the API key (admin-only endpoint). The key is shown once, in
included.apiKey; Planka stores only its hash and prefix:
Configure the server with the key and nothing else. Remove
PLANKA_AGENT_EMAIL and PLANKA_AGENT_PASSWORD:
Rotating a key is step 3 again: issuing a new one invalidates the old.
An API key inherits its user's permissions β it carries no scopes of its own. Scoping therefore happens in three layers, and each covers something the others cannot.
Layer 1 has real enforcement but cannot express "do not call planka_get_board,
it costs forty times more context". Layer 2 can, and reaches every runtime.
Layer 3 stays true even if this package is pinned back to an older version.
Factual signals from GitHub, npm, and our automated checks β not a rating.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/planka-mcp)<a href="https://allmcps.com/mcp/planka-mcp"><img src="https://allmcps.com/api/badge/planka-mcp?style=directory" alt="Planka MCP on AllMCPs" /></a>