Guides

Kanban Studio MCP

Manage boards with AI workflows via MCP

A practical model for online project workflows where AI agents manage kanban boards with real permissions.

The recommended flow is: read board state, plan next actions, write minimal updates, and verify results with another read call.

If your agent implementation is new to MCP semantics, review the official specification for transport behavior and tool invocation rules. MCP specification.

The key objective is deterministic board execution: the same instruction should produce the same board state after verification, even when multiple users and automations are active.

Board management patterns

  • Daily triage: list cards by board, update priority, and add missing context comments.
  • Delivery prep: move ready cards to execution lists and update owners.
  • Done validation: move completed cards only after status and required fields are confirmed.
  • Weekly hygiene: detect stale cards, add review comments, and reassign blocked work to keep delivery flow healthy.

Treat each pattern as a bounded run. Your agent should complete one objective, verify final state, and then continue with the next objective to avoid wide unintended updates.

Agent brief template

Use this template when you pass instructions to an AI agent. It reduces ambiguity and improves repeatability.

Brief structure

  • Goal: one measurable outcome on one board.
  • Scope: allowed tools and forbidden write actions.
  • Constraints: cards/lists in scope, priority policy, due-date policy.
  • Verification: exact read calls required before and after writes.
  • Output format: concise report with changed entities and unresolved blockers.

Avoid instructions like 'clean up the board' without constraints. Instead, define explicit selection criteria so the agent can decide predictably.

Quality gates

  • Pre-write gate: ensure current card state is fetched in the same run.
  • Write gate: apply only minimal field changes required by the goal.
  • Post-write gate: verify card/list state and confirm no unexpected side effects.

When any gate fails, stop the run and return a structured error report instead of continuing with partial assumptions.

Observability

For production workflows, log each run with objective, boardId, tool sequence, write count, and verification result. This gives you an audit trail for incident response and prompt tuning.

Track two practical KPIs: success rate of fully verified runs and number of manual corrections after automated updates.

Security guardrails

  • Prefer OAuth by default. If a workflow must use API keys (legacy client), use one key per workflow and rotate it regularly.
  • Keep scopes narrow to avoid broad write permissions.
  • Always verify board role checks before running write actions.