List sprints
jira_list_sprintsList sprints for a Scrum board by board ID, with optional state filter (active, future, closed). Returns sprint IDs, names, goals, and dates; use the ID to fetch or move issues.
Instructions
Lists a board's sprints with their id, name, state, goal and dates. Filter with state ("active" for the sprint in flight, "future" for the ones planned). The sprint id is what jira_get_sprint_issues and jira_move_to_sprint take. Kanban boards have no sprints. One page per call: when paging.partial is true, call again with startAt = paging.nextStartAt.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| state | No | Sprint state filter: "active", "future", "closed", or several of them. Omit to list every sprint the board has ever had. | |
| boardId | Yes | Board id from jira_list_boards. Scrum boards only. | |
| profile | No | Named credential profile for this call. Omit to use the active profile. Rejected when the server locks the profile (JIRA_LOCK_PROFILE). | |
| startAt | No | Offset to resume from — pass `paging.nextStartAt` from the previous call. | |
| maxResults | No | Rows per page, 1…50 (the Agile API's own cap); default 50. One page is read per call. |