manage_boards
Manage Jira agile boards and sprints.
Actions
Section titled “Actions”| Action | Description | Required Params | Optional Params |
|---|---|---|---|
list_boards | List all boards | project_key, start_at, max_results | |
get_board | Get board details | board_id | |
list_sprints | List sprints for a board | board_id | state, start_at, max_results |
get_sprint_issues | Get issues in a sprint | sprint_id | start_at, max_results |
get_backlog | Get board backlog | board_id | start_at, max_results |
get_active_sprint | Get the active sprint | board_id | |
search_sprints | Search sprints by name | board_id, query | |
create_sprint | Create a new sprint | board_id, name | start_date, end_date, goal |
update_sprint | Update a sprint | sprint_id | name, state, start_date, end_date, goal |
move_to_sprint | Move issues to a sprint | sprint_id, issue_keys |
Parameters
Section titled “Parameters”| Parameter | Type | Description |
|---|---|---|
action | string | Required. Action to perform |
project_key | string | Filter boards by project key (for list_boards) |
board_id | int | Board ID |
sprint_id | int | Sprint ID |
state | string | Sprint state filter: active, future, closed (for list_sprints) |
query | string | Sprint name search query (for search_sprints) |
name | string | Sprint name (for create_sprint) |
start_date | string | Sprint start date ISO 8601 (for create_sprint) |
end_date | string | Sprint end date ISO 8601 (for create_sprint) |
goal | string | Sprint goal (for create_sprint) |
issue_keys | string | Comma-separated issue keys (for move_to_sprint) |
start_at | int | Pagination start index |
max_results | int | Maximum results to return |
Examples
Section titled “Examples”List boards for a project
Section titled “List boards for a project”{ "action": "list_boards", "project_key": "PROJ"}Get active sprint
Section titled “Get active sprint”{ "action": "get_active_sprint", "board_id": 42}Get sprint issues
Section titled “Get sprint issues”{ "action": "get_sprint_issues", "sprint_id": 101}Create a sprint
Section titled “Create a sprint”{ "action": "create_sprint", "board_id": 42, "name": "Sprint 16", "start_date": "2025-01-28T09:00:00.000Z", "end_date": "2025-02-11T09:00:00.000Z", "goal": "Ship OAuth and fix regressions"}Update a sprint
Section titled “Update a sprint”{ "action": "update_sprint", "sprint_id": 101, "name": "Sprint 16 - Extended", "end_date": "2025-02-14T09:00:00.000Z", "goal": "Ship OAuth, fix regressions, and update docs"}Move issues to a sprint
Section titled “Move issues to a sprint”{ "action": "move_to_sprint", "sprint_id": 101, "issue_keys": "PROJ-200,PROJ-201,PROJ-202"}