Get Sprints from Board
jira_get_sprints_from_boardRetrieve Jira sprints from a specified board, filtering by state (active, future, or closed) with pagination support.
Instructions
Get jira sprints from board by state.
Args: ctx: The FastMCP context. board_id: The ID of the board. state: Sprint state ('active', 'future', 'closed'). If None, returns all sprints. start_at: Starting index. limit: Maximum results.
Returns: JSON string representing a list of sprint objects.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| board_id | Yes | The id of board (e.g., '1000') | |
| state | No | Sprint state (e.g., 'active', 'future', 'closed') | |
| start_at | No | Starting index for pagination (0-based) | |
| limit | No | Maximum number of results (1-50) |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |