Skip to main content
Glama

manageJiraSprint

Create, start, update, or close Jira sprints and add issues to them via the Agile API to organize and track team work.

Instructions

Create, populate, start, update, or close a sprint.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
goalNo
nameNo
endDateNoISO-8601, required for start
sprintIdNoRequired for start/close/update/addIssues
issueKeysNoRequired for addIssues
operationYes
startDateNoISO-8601, required for start
originBoardIdNoRequired for create

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.7/5.0
Behavior2/5

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

Annotations already declare readOnlyHint=false, openWorldHint=true, idempotentHint=false, and destructiveHint=false, carrying the safety profile. The description adds no further behavioral context such as permissions required, side effects of closing a sprint, or whether operations are reversible.

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 no wasted words, appropriately sized for the tool surface. It could arguably be slightly more structured for a multi-operation tool, but it is efficient.

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?

For an 8-parameter, multi-operation mutation tool with 63% schema coverage and no output schema, the description is too thin. It does not map parameters to operations or explain operation-specific requirements, leaving significant gaps an agent must infer.

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 63%, so the description should compensate but adds nothing about parameter meaning. The verbs loosely correspond to the operation enum, but terms like 'populate' versus 'addIssues' create ambiguity, and nothing clarifies which fields apply to which operation.

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 names the resource (sprint) and enumerates the verbs the tool supports (create, populate, start, update, close), which maps to the operation enum. However, 'populate' only loosely maps to the 'addIssues' operation and it gives no differentiation from sibling tools like listJiraBoardSprints.

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?

There is no guidance on when to use this tool versus alternatives, no prerequisites, and no exclusions. The list of operations restates what the schema enum already provides rather than telling an agent when this tool is the right choice.

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