MCP Atlassian

by sooperset
Verified

jira_get_sprints_from_board

Retrieve Jira sprints from a specific board by state (active, future, closed) using a board ID. Manage results with start index and limit parameters for precise data extraction.

Instructions

Get jira sprints from board by state

Input Schema

NameRequiredDescriptionDefault
board_idNoThe id of board (e.g., '1000')
limitNoMaximum number of results (1-50)
startNoStart index of sprint
stateNoSprint state (e.g., 'active', 'future', 'closed')

Input Schema (JSON Schema)

{ "properties": { "board_id": { "description": "The id of board (e.g., '1000')", "type": "string" }, "limit": { "default": 10, "description": "Maximum number of results (1-50)", "maximum": 50, "minimum": 1, "type": "number" }, "start": { "default": 0, "description": "Start index of sprint", "type": "number" }, "state": { "description": "Sprint state (e.g., 'active', 'future', 'closed')", "type": "string" } }, "type": "object" }
ID: kc33m1kh5m