confluence-mcp

by zereight
Verified

get_board_sprints

Retrieve all sprints from a Jira board by specifying the board ID and filtering by state (active, future, closed) to manage and track project progress effectively.

Instructions

Get all sprints from a Jira board

Input Schema

NameRequiredDescriptionDefault
boardIdYesJira board ID
stateNoFilter sprints by state (active, future, closed)

Input Schema (JSON Schema)

{ "properties": { "boardId": { "description": "Jira board ID", "type": "string" }, "state": { "description": "Filter sprints by state (active, future, closed)", "enum": [ "active", "future", "closed" ], "type": "string" } }, "required": [ "boardId" ], "type": "object" }
ID: p7fnmpaukj