Skip to main content
Glama

getJiraBoardSprintData

Read-onlyIdempotent

Retrieve a Jira board and its sprint data in one call. Defaults to the active sprint and can include issues for focused planning or reporting.

Instructions

Resolve a board plus its sprint data in one call; defaults to the active sprint.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
boardIdYes
sprintIdNoDefaults to the board's active sprint
includeIssuesNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.2/5.0
Behavior3/5

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

Annotations already declare readOnlyHint, idempotentHint, destructiveHint=false and openWorldHint, so the safety profile is covered. The description's only added behavioral fact is the active-sprint default, which is genuinely useful but thin; nothing is said about return shape, pagination, or errors.

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?

A single front-loaded sentence with a semicolon; nothing is wasted. It is efficient, though arguably too terse to carry the needed parameter and usage detail.

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?

For a 3-parameter read tool with full annotation coverage but no output schema, the description covers the happy path but omits what 'sprint data' includes and never explains includeIssues. It is minimally viable but leaves gaps an agent must fill by trial.

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 33%: sprintId's default is duplicated from the schema, while boardId and especially the boolean includeIssues are undocumented in both places. The description does not compensate for the includeIssues gap, leaving an agent guessing what that flag does.

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 (resolve) and resources (board + sprint data), and the phrase 'in one call' hints at the combined retrieval that distinguishes it from single-resource siblings. However, it never names which sibling to prefer (listJiraBoardSprints, getJiraBoardIssueData), so an agent still has to infer the boundary.

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 clause 'defaults to the active sprint' implies the common usage path when sprintId is omitted, but there is no explicit when-to-use/when-not guidance or alternatives named against the many board/sprint siblings. Usage is inferable but not stated.

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