Skip to main content
Glama

List Sprints

kaiten_list_sprints
Read-onlyIdempotent

List company sprints with an optional active filter, returning IDs, titles, dates, and velocity. Use to track scrum progress. Empty array means sprints are not configured.

Instructions

List company sprints with an optional active-flag filter. A sprint in Kaiten is a scrum-style time-box with velocity/committed tracking. Not every workspace uses sprints — an empty array means sprints are simply not configured here, not that your access is broken. Returns id, title, active, dates, velocity. Requires access to the company entities tree (403 otherwise). Use kaiten_get_sprint for the full per-sprint summary including cards.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMax results (default 100, max 100)
activeNoFilter by active flag (omit for all sprints)
offsetNoOffset for pagination
verbosityNoDetail: raw|min(default)|normal|maxmin

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.7

TDQS

A4.7/5.0
Behavior5/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, openWorldHint=true, and destructiveHint=false, so the safety profile is covered. The description adds genuinely new behavioral context: the 403 error tied to missing access to the company entities tree, the semantic meaning of an empty array, and the exact fields returned (id, title, active, dates, velocity) — all beyond what annotations convey.

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?

Four sentences, each earning its place: purpose with filter scoping, a brief domain definition of sprint, the empty-array interpretation gotcha, and a closing sentence packing return fields, the auth requirement, and the sibling routing. The core purpose is front-loaded and there is zero filler or repetition of schema content.

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

Completeness5/5

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

For a read-only list tool with no output schema, the description covers everything an agent needs: result shape (field names), error conditions (403), empty-result semantics, and the alternative for deeper detail. All four parameters are fully documented in the schema, and annotations carry the safety profile, leaving no material gap.

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 description coverage is 100%, so limit, active, offset, and verbosity are each already documented with defaults, ranges, and meanings. The description only echoes the active filter and adds no new parameter-level detail, so the baseline of 3 is appropriate — the schema does the heavy lifting and the description does not need to compensate.

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 opens with a specific verb and resource — 'List company sprints' — and immediately notes the optional active-flag filter. It further distinguishes itself from kaiten_get_sprint by framing this as the list-level view versus the per-sprint detail view, and the sibling list contains no other sprint-list tool, so there is no ambiguity an agent could face.

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

Usage Guidelines5/5

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

The description explicitly routes to kaiten_get_sprint when the full per-sprint summary including cards is needed, naming the condition that selects the alternative. It also tells the agent how to interpret an empty result (not a broken access, just no sprints configured), which prevents a wrong downstream action after the call.

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

Deploy Server

Other Tools