Skip to main content
Glama
kanbanzone

Kanban Zone MCP Server

Official
by kanbanzone

Create a card

kanbanzone_create_card

Add a card to a board with title; optionally set description, column, owner, label, or insert at top.

Instructions

Create a single card on a board. Internally calls the batch POST /cards endpoint with a one-card array.

Args:

  • board (string, required): board publicId.

  • title (string, required): card title.

  • description (string, optional): rich-text or plain description.

  • column (string, optional): column ObjectId. If omitted, the card lands in the default backlog.

  • owner (string, optional): account email of the assignee.

  • label (string, optional): label name (e.g. "Enhancement"). Must match a label configured on the board.

  • addToTop (boolean, optional): insert at the top of the column instead of the bottom.

Examples:

  • "Create a card titled 'Refactor auth' on board OeMrbG8g"

  • "Add a card to the To-Do column with description ..."

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
boardYes
titleYes
descriptionNo
columnNo
ownerNo
labelNo
addToTopNo
Behavior4/5

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

Annotations already provide readOnlyHint false and destructiveHint false, so the description's job is easier. It adds value by disclosing the internal batch call behavior and default backlog behavior. No contradictions; openWorldHint true is not elaborated but not contradicted.

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

Conciseness5/5

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

The description is well-structured with a header, bulleted Args list, and examples. It is concise, front-loaded, and every sentence provides value. No redundancy.

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

Completeness3/5

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

The description thoroughly covers parameters and usage examples, but it omits the output/return value of the tool. Since there is no output schema, the agent is left guessing what the tool returns (likely the created card). Side effects beyond the open world hint are not mentioned.

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

Parameters5/5

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

Schema description coverage is 0%, so the description carries the full burden. It defines every parameter with type, purpose, constraints (e.g., label must be configured), and examples. This significantly adds meaning beyond the bare schema.

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

Purpose5/5

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

The description clearly states 'Create a single card on a board' with a specific verb and resource. It distinguishes from sibling tools like create_checklist and create_comment, as those are for different entities. The internal batch call detail adds specificity.

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

Usage Guidelines3/5

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

The description implicitly conveys when to use (to create a card) via its name and examples, but lacks explicit guidance on when not to use (e.g., for updating cards) or alternatives. There is no contrast with related tools like update_card or move_card.

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

Install Server

Other Tools

Latest Blog Posts

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/kanbanzone/kanban-zone-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server