Skip to main content
Glama

Set Ticket Estimate

kanban_set_estimate

Assign a Scrum poker estimate to a ticket to record its complexity and support sprint planning.

Instructions

Assign a Scrum poker estimate to a ticket

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
estimateYes
ticketIdYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
ticketYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.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, the description alone must disclose behavioral traits. It says 'assign' which implies a mutation, but it doesn't state whether the estimate is overwritten, whether it's reversible, or any permission requirements. It also doesn't describe the output despite having an output schema, which could be inferred but is not stated. The description is too terse to provide adequate transparency.

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 one concise sentence with no wasted words. It front-loads the action and object. However, it's under-specified, which is not a structural issue but a content issue. The conciseness is good, but it sacrifices necessary detail for brevity.

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?

Given the tool's moderate complexity (2 parameters, output schema present), the description is incomplete. It doesn't clarify the relationship to Scrum poker values, the effect of setting an estimate (e.g., state changes), or any special behaviors. The output schema exists but the description doesn't reference it, and with no annotations, the agent lacks critical context for correct invocation.

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

Parameters1/5

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

Schema description coverage is 0%, meaning the schema properties only have types, no descriptions. The tool description mentions 'estimate' and 'ticket' implicitly, but it doesn't clarify the semantics of the estimate parameter, such as the allowed range or relationship to Scrum values (e.g., numbers from a specific set). With 2 parameters and no description coverage, the description fails to compensate, leaving the agent guessing at the meaning of 'estimate'.

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 clearly states the verb 'assign' and the resource 'estimate to a ticket', which distinguishes it from other ticket operations like update or move. However, it doesn't explicitly specify the resource type or the fact that it uses Scrum poker values, which could be inferred from the tool name and the existence of a sibling tool kanban_list_scrum_values. Overall, it is clear enough for an agent to understand the basic function.

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?

The description provides no guidance on when to use this tool versus alternatives, such as kanban_update_ticket or kanban_list_scrum_values. There is no mention of prerequisites, typical use cases, or exclusions. An agent would have to infer usage from the context, which is insufficient for a tool that modifies ticket state.

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