Skip to main content
Glama

Move Ticket

kanban_move_ticket

Move tickets between columns; when closing to Done, require a completion summary documenting what was done, future improvements, and related ticket links.

Instructions

Move a ticket to another column. When moving to Done, provide completionSummary with: 1) What was done, 2) Future improvements, 3) Separated work (links to related tickets). Deployment proof is optional.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
columnIdNo
priorityNo
ticketIdYes
columnNameNo
deploymentProofNoOptional deployment or build URL
completionSummaryNoREQUIRED when moving to Done column. Must include: 1) What was done, 2) Future improvements, 3) Separated work (ticket links)
completionEvidenceNoOptional structured completion evidence items, such as bu-browser screenshots. Each item requires label, url, and type.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
ticketYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.5/5.0
Behavior3/5

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

With no annotations, the description carries the burden of behavioral disclosure. It adds useful behavioral context by requiring a completionSummary when moving to Done and noting that deployment proof is optional. However, it does not disclose side effects like whether the move is reversible, whether it triggers anything downstream, or authorization requirements.

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 two sentences, front-loading the core action and then giving the key condition. It is tight and readable, though 'Deployment proof is optional' slightly repeats what the schema already states.

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?

Although an output schema exists, an agent still lacks essential operational context: the schema requires only ticketId but the tool needs a target column, and it is unclear whether columnId or columnName should be provided, or how they interact. The Done-related guidance is helpful but does not make the tool fully callable in non-Done cases.

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 coverage is only 43%, so the description must compensate. It adds meaningful detail for completionSummary, enumerating the three required elements, and clarifies deploymentProof is optional. Yet it leaves columnId, columnName, and priority unexplained, so parameter meaning remains incomplete.

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 uses a specific verb and resource: 'Move a ticket to another column.' This clearly distinguishes the tool from siblings like kanban_update_ticket and kanban_reorder_column_tickets, and the Done-column condition adds precision.

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 implies usage: whenever moving a ticket between columns. It gives a clear conditional rule for Done, but it does not explicitly say when to prefer this tool over kanban_update_ticket or kanban_reorder_column_tickets, nor does it mention exclusions such as completing vs staging.

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