Skip to main content
Glama

Get Batch

kanban_get_batch

Fetch a Kanban batch and its planned ticket items using the batch ID.

Instructions

Fetch a Kanban batch with its planned ticket items.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
batchIdYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
batchYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.9/5.0
Behavior2/5

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

No annotations are present, so the description carries the full burden. It implies a read operation through 'Fetch' but does not explicitly state that it has no side effects, whether it requires special permissions, or what happens when the batch does not exist.

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 a single sentence that starts with the action word 'Fetch' and quickly identifies the object. There is no filler or redundant phrasing.

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?

With an output schema present, return values are likely covered. However, the description lacks any context about when a batch is relevant or how batchId is typically obtained, which is not fully compensated elsewhere.

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 description coverage is 0%, so the description must compensate. It only implies batchId is the batch identifier, but does not explain its format or what constitutes a 'batch'. No additional parameters are described.

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 names the verb 'Fetch' and the resource 'Kanban batch', and adds 'with its planned ticket items' to specify content. It is distinct from siblings like get_board or get_ticket_runs, though it does not explicitly name them.

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. It does not state prerequisites (e.g., needing a batchId) or suggest when not to use it.

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