Skip to main content
Glama

Create sprint

jira_create_sprint

Create a future-state Scrum sprint on a board by providing board ID, name, dates, and goal. You get the sprint ID; the sprint does not start until you explicitly start it.

Instructions

Creates a sprint on a Scrum board and returns its id. The sprint is created in the "future" state — this does NOT start it, jira_start_sprint does, and only a started sprint is the work in flight. startDate and endDate here only plan the window; the start requires both. Running this twice creates two sprints with the same name, so check jira_list_sprints first if you are unsure.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
goalNoOne-line sprint goal shown on the board. Optional.
nameYesSprint name, e.g. "Sprint 14". Jira has no default and will not invent one.
applyNoSet true to EXECUTE this write. Omit (or false) to get a plan of the request that would be sent. Executing also requires the server to run with JIRA_WRITE_MODE=apply.
endDateNoPlanned end. ISO-8601 with a UTC offset, e.g. 2026-01-31T09:00:00.000+02:00; sent verbatim.
plan_idNoThe single-use id returned by the preceding plan-mode call. Required together with apply: true; a mismatch means the arguments changed since the plan, and the write is refused rather than executed.
profileNoNamed credential profile for this call. Omit to use the active profile. Rejected when the server locks the profile (JIRA_LOCK_PROFILE).
startDateNoPlanned start. ISO-8601 with a UTC offset, e.g. 2026-01-31T09:00:00.000+02:00; sent verbatim. Planning is not starting.
originBoardIdYesBoard id from jira_list_boards — the Scrum board the sprint belongs to. Kanban boards have no sprints.
Behavior4/5

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

Annotations already mark this as a write operation with idempotentHint=false, but the description adds valuable behavioral context: the sprint is not started, startDate/endDate only plan the window, and duplicate sprints are possible on repeated calls. This goes meaningfully beyond the structured annotations.

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 compact, front-loaded with the core action, and every sentence earns its place: purpose, lifecycle caveat, date semantics, and duplicate-risk warning. No 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?

Given no output schema, the description appropriately notes the id return value. It also covers the main risks an agent must handle: non-idempotency, future state, and the relationship to jira_start_sprint. With 100% parameter schema coverage, nothing critical is left to guesswork.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the parameters are already well documented individually. The description adds relationship-level meaning by clarifying that startDate and endDate are only planning values, not the actual start, and that the start requires both. This is genuinely useful semantics beyond the schema fields.

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?

States a precise verb and resource: 'Creates a sprint on a Scrum board and returns its id.' It also differentiates from jira_start_sprint and jira_list_sprints, so an agent can distinguish this creation action from lifecycle and listing siblings without opening schemas.

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?

Gives explicit usage context: the sprint is created in the 'future' state and not started; jira_start_sprint is the named alternative for actually starting it. It also warns that repeated calls create duplicate sprints and tells the agent to check jira_list_sprints first, which is concrete when-to-use guidance.

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

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/IvanBBaev/jira-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server