Skip to main content
Glama

jira_get_sprint_issues

Retrieve Jira issues from a specific sprint by sprint ID. Select fields, set pagination limits, and get structured results with pagination info.

Instructions

Get jira issues from sprint.

Args: ctx: The FastMCP context. sprint_id: The ID of the sprint. fields: Comma-separated fields to return. start_at: Starting index. limit: Maximum results.

Returns: JSON string representing the search results including pagination info.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum number of results (1-50)
fieldsNoComma-separated fields to return in the results. Use '*all' for all fields, or specify individual fields like 'summary,status,assignee,priority'status,versions,description,created,priority,reporter,fixVersions,updated,labels,issuetype,assignee,summary
start_atNoStarting index for pagination (0-based)
sprint_idYesThe id of sprint (e.g., '10001')

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changedv0.9.0
    • changedInput schema / properties / fields / default
      Previous value: -"reporter,issuetype,status,labels,created,summary,assignee,updated,versions,description,priority,fixVersions"New value: +"status,versions,description,created,priority,reporter,fixVersions,updated,labels,issuetype,assignee,summary"
  2. Addedv0.7.0
  3. Removedv0.6.2-rc.1
  4. First observedv0.1.0

TDQS

B3.2/5.0
Behavior3/5

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

With no annotations, the description carries the full burden of behavioral disclosure. 'Get' clearly implies a read operation, and the note that it returns a JSON string with pagination info adds some transparency. However, it does not explicitly state that it has no side effects, nor does it mention any authentication, rate-limit, or error behavior.

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 efficiently structured: a one-line summary, an args list, and a returns note. It is front-loaded and contains no filler, though the args list is largely redundant with the schema. Still, it is appropriately sized for a simple list-style tool.

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?

The description covers the basics—what it does, the parameters, and the return format—but falls short on usage context and behavioral context. Given the sprite, the output schema exists and the parameter schema is complete, this is adequate but not thorough: no mention of when to use it over alternatives or any special constraints beyond schema.

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 100%, and the schema already documents each parameter with defaults, ranges, and examples. The description merely repeats the parameter names without adding semantic meaning beyond what the schema provides, so the baseline score of 3 applies.

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 states a clear verb ('Get') and resource ('jira issues from sprint'), which distinguishes it from sibling tools like jira_get_board_issues or jira_get_project_issues. It does not explicitly compare with these siblings, but the 'from sprint' scope is precise and leaves little ambiguity.

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 related tools such as jira_get_board_issues, jira_search, or jira_get_issue. It only lists parameters and return behavior, leaving the agent to infer usage context without any exclusions or alternatives.

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