Server data from the Official MCP Registry
MCP server for Zuuna — coding agents read and work your git-truth kanban board via the v1 API.
About
MCP server for Zuuna — coding agents read and work your git-truth kanban board via the v1 API.
Security Report
This is a well-structured MCP server for Zuuna board management with solid authentication, proper authorization scoping, and clean code practices. Authentication is required (Bearer token via env var), permissions align with the server's board I/O purpose, and error handling is comprehensive. Minor issues around env var validation and non-HTTPS warnings are present but do not significantly impact security. Supply chain analysis found 3 known vulnerabilities in dependencies (0 critical, 3 high severity). Package verification found 1 issue.
6 files analyzed · 8 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
Permissions Required
This plugin requests these system permissions. Most are normal for its category.
What You'll Need
Set these up before or after installing:
Environment variable: ZUUNA_API_TOKEN
Environment variable: ZUUNA_BASE_URL
Environment variable: ZUUNA_TIMEOUT_MS
How to Install
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-kenzotp-mcp-server-zuuna": {
"env": {
"ZUUNA_BASE_URL": "your-zuuna-base-url-here",
"ZUUNA_API_TOKEN": "your-zuuna-api-token-here",
"ZUUNA_TIMEOUT_MS": "your-zuuna-timeout-ms-here"
},
"args": [
"-y",
"mcp-server-zuuna"
],
"command": "npx"
}
}
}Documentation
View on GitHubFrom the project's GitHub README.
mcp-server-zuuna
Agent-native board access for Zuuna — a Model Context Protocol server that lets coding agents (Claude Code, Cursor, Codex) read and work a Zuuna board directly.
Agents work the board. Git keeps it honest.
The agent reads the board via this MCP server, does the work in the repo with its own coding tools, and when the PR merges, a rule on your Zuuna board moves the card. Zuuna provides the interface and the verifiable board truth — the agent writes the code, not Zuuna.
Status
Working and tested, and published on npm (npx -y mcp-server-zuuna) after an auth
review of the token model, scopes and tool surface. Run from source (bottom) if you want
to hack on it.
Hosted alternative
The same 67 tools are also available with nothing to install: Zuuna runs a hosted MCP connector at app.zuuna.de/mcp (OAuth sign-in, Developer plan). Point Claude Code, Cursor or Codex at that URL directly and skip the token and the npx line below. This package exists for the case that does need a local process: a CI runner, an air-gapped agent, or a workflow that wants a plain bearer token instead of an OAuth sign-in. See Kanban board for AI agents for both routes side by side.
Tools
67 tools, grouped by area. Every tool works with any valid token; the Scopes column lists
what else the token must carry. The 8 marked destructive refuse to run without an
explicit confirm: true argument.
Identity
| Tool | Method + path | Scopes |
|---|---|---|
zuuna_me | GET /api/v1/me | none |
Groups
| Tool | Method + path | Scopes |
|---|---|---|
zuuna_list_groups | GET /api/v1/groups | boards:read |
zuuna_list_group_members | GET /api/v1/groups/{groupId}/members | boards:read |
zuuna_list_epics | GET /api/v1/groups/{groupId}/epics | boards:read |
zuuna_list_group_cards | GET /api/v1/groups/{groupId}/cards | cards:read |
Boards
| Tool | Method + path | Scopes |
|---|---|---|
zuuna_boards | GET /api/v1/boards | boards:read |
zuuna_board | GET /api/v1/boards/{id}/columns + GET /api/v1/boards/{id}/cards | boards:read, cards:read |
zuuna_create_board | POST /api/v1/boards | boards:write |
zuuna_list_columns | GET /api/v1/boards/{boardId}/columns | boards:read |
zuuna_create_column | POST /api/v1/boards/{boardId}/columns | boards:write |
zuuna_list_automations | GET /api/v1/boards/{boardId}/automations | boards:read |
Cards
| Tool | Method + path | Scopes |
|---|---|---|
zuuna_card | GET /api/v1/cards/{idOrKey} | cards:read |
zuuna_list_board_cards | GET /api/v1/boards/{boardId}/cards | cards:read |
zuuna_create_card | POST /api/v1/boards/{boardId}/cards | cards:write |
zuuna_update_card | PATCH /api/v1/cards/{idOrKey} | cards:write |
zuuna_move_card | PATCH /api/v1/cards/{idOrKey} | cards:write |
zuuna_move_card_to_board | POST /api/v1/cards/{cardId}/move | cards:write |
zuuna_archive_card | POST /api/v1/cards/{cardId}/archive | cards:write |
zuuna_unarchive_card | DELETE /api/v1/cards/{cardId}/archive | cards:write |
zuuna_delete_card (destructive) | DELETE /api/v1/cards/{cardId} | cards:write |
zuuna_restore_card | POST /api/v1/cards/{cardId}/restore | cards:write |
Comments
| Tool | Method + path | Scopes |
|---|---|---|
zuuna_list_comments | GET /api/v1/cards/{cardId}/comments | comments:read |
zuuna_comment | POST /api/v1/cards/{cardId}/comments | comments:write |
Checklist
| Tool | Method + path | Scopes |
|---|---|---|
zuuna_list_checklist | GET /api/v1/cards/{cardId}/checklist | cards:read |
zuuna_add_checklist_item | POST /api/v1/cards/{cardId}/checklist | cards:write |
zuuna_update_checklist_item | PATCH /api/v1/cards/{cardId}/checklist/{itemId} | cards:write |
zuuna_delete_checklist_item (destructive) | DELETE /api/v1/cards/{cardId}/checklist/{itemId} | cards:write |
Relations
| Tool | Method + path | Scopes |
|---|---|---|
zuuna_list_relations | GET /api/v1/cards/{cardId}/relations | cards:read |
zuuna_add_relation | POST /api/v1/cards/{cardId}/relations | cards:write |
zuuna_delete_relation (destructive) | DELETE /api/v1/cards/{cardId}/relations/{linkId} | cards:write |
Attachments
Metadata only, both ways: no tool here ever reads or writes file bytes (see "Honest scope" below).
| Tool | Method + path | Scopes |
|---|---|---|
zuuna_list_attachments | GET /api/v1/cards/{cardId}/attachments | cards:read |
zuuna_get_attachment | GET /api/v1/cards/{cardId}/attachments/{attachmentId} (metadata only) | cards:read |
zuuna_delete_attachment (destructive) | DELETE /api/v1/cards/{cardId}/attachments/{attachmentId} | cards:write |
Time tracking
| Tool | Method + path | Scopes |
|---|---|---|
zuuna_list_card_time | GET /api/v1/cards/{cardId}/time | time:read |
zuuna_log_time | POST /api/v1/cards/{cardId}/time | time:write |
zuuna_start_timer | POST /api/v1/cards/{cardId}/time | time:write |
zuuna_stop_timer | POST /api/v1/cards/{cardId}/time | time:write |
zuuna_list_active_timers | GET /api/v1/time/active | time:read |
zuuna_update_time_entry | PATCH /api/v1/time/{entryId} | time:write |
zuuna_delete_time_entry (destructive) | DELETE /api/v1/time/{entryId} | time:write |
zuuna_import_time_entries | POST /api/v1/time/entries | time:write |
Sprints
| Tool | Method + path | Scopes |
|---|---|---|
zuuna_list_sprints | GET /api/v1/sprints | boards:read |
zuuna_get_sprint | GET /api/v1/sprints/{sprintId} | boards:read |
zuuna_create_sprint | POST /api/v1/sprints | cards:write |
zuuna_update_sprint | PATCH /api/v1/sprints/{sprintId} | cards:write |
zuuna_add_cards_to_sprint | POST /api/v1/sprints/{sprintId}/cards | cards:write |
zuuna_remove_card_from_sprint | DELETE /api/v1/sprints/{sprintId}/cards/{cardId} | cards:write |
Recurring cards
| Tool | Method + path | Scopes |
|---|---|---|
zuuna_list_recurring_cards | GET /api/v1/boards/{boardId}/recurring | boards:read |
zuuna_create_recurring_card | POST /api/v1/boards/{boardId}/recurring | cards:write |
zuuna_update_recurring_card | PATCH /api/v1/recurring/{id} | cards:write |
zuuna_delete_recurring_card (destructive) | DELETE /api/v1/recurring/{id} | cards:write |
Releases
| Tool | Method + path | Scopes |
|---|---|---|
zuuna_list_releases | GET /api/v1/releases | boards:read |
zuuna_get_release | GET /api/v1/releases/{releaseId} | boards:read |
zuuna_create_release | POST /api/v1/releases | releases:write |
zuuna_update_release | PATCH /api/v1/releases/{releaseId} | releases:write |
zuuna_delete_release (destructive) | DELETE /api/v1/releases/{releaseId} | releases:write |
Deployments
Observation only: there is no "trigger a deploy" tool, on the hosted connector either (see "Honest scope").
| Tool | Method + path | Scopes |
|---|---|---|
zuuna_list_deployments | GET /api/v1/deployments | boards:read |
zuuna_report_deployment | POST /api/v1/deployments | deployments:write |
Webhooks
| Tool | Method + path | Scopes |
|---|---|---|
zuuna_list_webhooks | GET /api/v1/webhooks | webhooks:manage |
zuuna_create_webhook | POST /api/v1/webhooks | webhooks:manage |
zuuna_update_webhook | PATCH /api/v1/webhooks/{id} | webhooks:manage |
zuuna_delete_webhook (destructive) | DELETE /api/v1/webhooks/{id} | webhooks:manage |
zuuna_test_webhook | POST /api/v1/webhooks/{id}/test | webhooks:manage |
zuuna_list_webhook_deliveries | GET /api/v1/webhooks/{id}/deliveries | webhooks:manage |
Git on board
Link commits, branches, PRs and CI status to cards. None of these move a card by themselves (see "Honest scope").
| Tool | Method + path | Scopes |
|---|---|---|
zuuna_link_git_branches | POST /api/v1/git/branches | git:write |
zuuna_report_ci_checks | POST /api/v1/git/checks | git:write |
zuuna_record_git_events | POST /api/v1/git/events | git:write |
Behavioral notes:
- Errors come back as MCP tool errors with the API's own message (the v1 envelope's
messageplus status and machinecode) — e.g.409 wip_limit_reachedwhen a HARD WIP limit refuses a move. - One request, no retries: 4xx answers are never re-sent. Requests time out after 15 s (configurable) and surface as network errors.
- Card display keys like
ZNA-2001work anywhere a card is addressed — the v1 API accepts the key as the handle. zuuna_boardpages the card list (200 cards per page, the v1 API's own cap) so a big board cannot flood the agent's context. When a page is not the whole board, the response sayscardsTruncated: trueand carriesnextCursor; send it back ascardsCursorto fetch the next page.zuuna_create_cardaccepts an optional client-chosenidempotencyKey: re-sending the same key after a lost response or a 5xx returns the original card (200) instead of minting a duplicate.- At startup the server reads its own token's scopes (
GET /api/v1/me) and registers only the tools they cover, the same scope gating the hosted connector applies. If that read fails (no network yet, an invalid token) it registers every tool instead and prints one line to stderr saying so; every call is still enforced by the API regardless of what got registered. - Five prompts ship alongside the tools (
session_start,session_end,triage_board,standup_summary,plan_sprint), starting points for a client that surfaces MCP prompts, not required for using the tools directly.
Setup
You need an API token from your Zuuna workspace. Give it the scopes for what the agent
should be allowed to do — a read-only observer needs only boards:read + cards:read.
The server is configured per client via environment variables:
| Variable | Default | Meaning |
|---|---|---|
ZUUNA_API_TOKEN | — (required) | Bearer API token |
ZUUNA_BASE_URL | https://app.zuuna.de | Zuuna base URL — must be an absolute http(s) URL (invalid values fail at startup); a plain-http value prints a cleartext-token warning to stderr |
ZUUNA_TIMEOUT_MS | 15000 | Per-request timeout |
Claude Code
claude mcp add zuuna \
-e ZUUNA_API_TOKEN=zk_live_your_token \
-- npx -y mcp-server-zuuna
or in the project's .mcp.json:
{
"mcpServers": {
"zuuna": {
"command": "npx",
"args": ["-y", "mcp-server-zuuna"],
"env": { "ZUUNA_API_TOKEN": "zk_live_your_token" }
}
}
}
Cursor
In ~/.cursor/mcp.json (or the project's .cursor/mcp.json):
{
"mcpServers": {
"zuuna": {
"command": "npx",
"args": ["-y", "mcp-server-zuuna"],
"env": { "ZUUNA_API_TOKEN": "zk_live_your_token" }
}
}
}
Codex
In ~/.codex/config.toml:
[mcp_servers.zuuna]
command = "npx"
args = ["-y", "mcp-server-zuuna"]
env = { "ZUUNA_API_TOKEN" = "zk_live_your_token" }
Run from source
git clone https://github.com/kenzotp/mcp-server-zuuna
cd mcp-server-zuuna && npm install && npm run build
then point the client at the built binary instead of npx:
claude mcp add zuuna -e ZUUNA_API_TOKEN=zk_live_your_token -- node /path/to/mcp-server-zuuna/dist/index.js
The loop
zuuna_board— the agent sees the board and picks a card (or you tell it: "do ZNA-2001").- The agent codes in your repo with its own tools, referencing the card key in commits.
- The PR merges — and git truth moves the card: Zuuna's git integration (webhooks/CLI) links the commits and the PR to the card, and a rule on the board (for example "PR merged → move to Done") moves it. Linking works out of the box; the move is one rule you add once under the board's Automations. After that the agent never has to touch the board by hand, and the board cannot drift from the repository.
Guides
- Kanban board for AI agents: the agent sets up the board, writes and moves cards, comments and logs its time; the board's rules carry the cards from there.
- Claude Code project management between sessions:
a
CLAUDE.mdroutine that keeps an app's plan on the board, so each new session starts where the last one stopped. - Zuuna for AI agents: the loop from card to merged PR, in English and German.
Honest scope
There is still no tool that triggers a deploy. zuuna_report_deployment (deployments:write)
only records what a pipeline already did (building, succeeded, failed); actually shipping
stays with your own CI, not the agent.
There are now three git:write tools, and what they do is narrower than the name suggests:
zuuna_record_git_eventsandzuuna_report_ci_checksattach commit/branch/PR history and CI status to whichever card a smart-commit reference or description names.zuuna_link_git_branchesreplaces a repo's whole in-flight-branches snapshot in one call.
None of the three moves a card. A card moves only because a board rule matched it (see
"The loop" above) or because zuuna_move_card / zuuna_update_card was called directly.
Automations themselves stay read-only here too (zuuna_list_automations): no tool creates,
edits or disables one. Attachments are metadata-only both ways: no tool reads or writes a
file's bytes, uploading included, the same restriction the hosted connector carries.
Development
npm install
npm run lint # eslint
npm run build # tsc -> dist/
npm test # vitest, fully mocked (no network)
Optional live smoke test, strictly read-only (GET /me and GET /boards only — nothing
is ever created, moved or commented):
ZUUNA_E2E=1 ZUUNA_API_TOKEN=zk_live_your_token npm run test:e2e
Requires Node.js >= 20.
License
Reviews
No reviews yet
Be the first to review this server!
More Developer Tools MCP Servers
Git
Freeby Modelcontextprotocol · Developer Tools
Read, search, and manipulate Git repositories programmatically
Fetch
Freeby Modelcontextprotocol · Developer Tools
Web content fetching and conversion for efficient LLM usage
Paperclip
Freeby Paperclipai · Developer Tools
Trending hip-hop artist momentum scores across four cultural dimensions.
Toleno
Freeby Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
mcp-creator-python
Freeby mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.
MCP Marketplace
Freeby mcp-marketplace · Developer Tools
Search and install MCP servers from inside your AI client.
