Skip to main content
Glama

mcp_kanban_project_board_manager

Manage Kanban projects and boards with operations to retrieve, create, update, delete, or summarize boards and projects.

Instructions

Manage projects and boards with various operations (retrieve projects/boards, create, update, delete, or get board summary). Note: A board contains column lists of cards.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idNoThe ID of the project or board
nameNoThe name of the board
pageNoThe page number for pagination (1-indexed)
typeNoThe type of the board
actionYesThe action to perform
boardIdNoThe ID of the board to get a summary for
perPageNoThe number of items per page
positionNoThe position of the board
projectIdNoThe ID of the project
includeCommentsNoWhether to include comments for each card
includeTaskDetailsNoWhether to include detailed task / checklist item information (sub-tasks with isCompleted status across all card task-lists) for each card

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.0.6

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It mentions the tool can create, update, and delete, implying mutability, but provides no detail on side effects, required permissions, reversibility, or response behavior. The structural note about boards containing column lists is contextual but not behavioral.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is compact—two sentences that state the purpose and a relevant structural fact. It is front-loaded with the main function, and every sentence earns its place. The note about board structure is concise and useful.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

This is a complex tool with 10 distinct actions and 11 parameters, yet the description gives only a generic overview. It does not explain action-specific parameter usage, return values (no output schema), or how the actions interrelate. For a tool of this complexity, the description is insufficiently detailed.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so all parameters are already described in the schema. The tool description adds nothing beyond what the schema provides; it does not explain relationships between parameters and actions or provide usage hints. Per the baseline rule for high coverage, a score of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description names the resource (projects and boards) and lists the operation types (retrieve, create, update, delete, get summary), giving a clear overall purpose. It differentiates from sibling tools by resource type, but does not name specific actions or siblings, leaving some ambiguity about the exact scope (e.g., which action does what).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is provided on when to use this tool versus alternatives, nor about choosing among its own actions. The description lists operation categories but does not explain scenarios (e.g., when to use get_projects vs get_project, or when pagination parameters apply). An agent is left to infer usage from the schema alone.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.