Skip to main content
Glama
timaw513

KanbanFlow MCP Server

by timaw513

create_task

Add a new task to a KanbanFlow board by specifying the board, column, and task name to organize your workflow.

Instructions

Create a new task on the board

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesName of the task
colorNo
positionNo
column_idYesID of the column to create the task in
board_nameYesName of the configured board to operate on (see list_boards)
descriptionNo
swimlane_idNoID of the swimlane (required if the board has swimlanes)
groupingDateNoOnly used if the target column is date grouped. Format YYYY-MM-DD, e.g. 2023-12-31. Use null or empty string to group as unknown date.
pointsEstimateNo
totalSecondsEstimateNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv2.0.0

TDQS

C2.6/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 behavioral burden and discloses almost nothing about this mutation. It does not say whether the new task is returned, whether required fields must reference existing board/column IDs, what happens if column_id is invalid, or what side effects (position, ordering) occur.

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

Conciseness3/5

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

One front-loaded sentence with zero waste, which is structurally sound. But at eight words for a 10-parameter mutation tool it is under-specified rather than concise, so the brevity costs more than it saves.

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?

A mutation tool with no annotations, no output schema, and half its parameters undocumented needs the description to fill those gaps, and it does not. An agent would have to infer required-field relationships (e.g. swimlane_id on swimlane boards) and the return behavior entirely on its own.

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

Parameters2/5

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

Schema coverage is only 50%, and the description adds no parameter meaning whatsoever. Five properties (color, position, description, pointsEstimate, totalSecondsEstimate) are undocumented in both place, and even the enum-constrained color and the date-grouping behavior of groupingDate get no narrative clarification.

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?

States a specific verb and resource ("Create a new task") with board scope, so the agent knows exactly what entity is being produced. However, it offers no differentiation from siblings such as create_subtask, which is a near-neighbor an agent could easily confuse with this tool.

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 when-to-use guidance, no prerequisites, and no named alternatives. The description never mentions create_subtask for subtasks or import_csv for bulk creation, both of which are plausible routing alternatives the agent must disambiguate without help.

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