You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -23,6 +23,7 @@ The Jira toolkit provides a comprehensive set of tools for interacting with Jira
23
23
- Manage issue labels and attachments, including adding and removing them.
24
24
- Transition issues between different statuses and manage comments on issues.
25
25
- Browse and list available projects, priorities, and users within Jira.
26
+
- Browse and list information of available boards and sprints within a Jira cloud.
26
27
27
28
This toolkit streamlines the process of issue management, making it easier to integrate Jira functionalities into applications and workflows.
28
29
@@ -60,6 +61,7 @@ This toolkit streamlines the process of issue management, making it easier to in
60
61
["Jira.AddLabelsToIssue", "Add labels to an existing Jira issue."],
61
62
["Jira.RemoveLabelsFromIssue", "Remove labels from an existing Jira issue."],
62
63
["Jira.UpdateIssue", "Update an existing Jira issue."],
64
+
["Jira.ListSprintsForBoards", "Retrieve sprints from Jira boards with filtering options for planning and tracking purposes."],
63
65
["Jira.ListLabels", "Get the existing labels (tags) in the user's Jira instance."],
64
66
["Jira.ListUsers", "Browse users in Jira."],
65
67
["Jira.GetUserById", "Get user information by their ID."],
@@ -76,6 +78,7 @@ This toolkit streamlines the process of issue management, making it easier to in
76
78
["Jira.ListProjects", "Browse projects available in Jira."],
77
79
["Jira.SearchProjects", "Get the details of all Jira projects."],
78
80
["Jira.GetProjectById", "Get the details of a Jira project by its ID or key."],
81
+
["Jira.GetBoards", "Get Jira boards, with the option to filter by a list of board names or IDs (accepts a mix of both). Supports 'offset' and 'limit' parameters."],
79
82
["Jira.GetPriorityById", "Get the details of a priority by its ID."],
80
83
["Jira.ListPrioritySchemes", "Browse the priority schemes available in Jira."],
81
84
["Jira.ListPrioritiesAssociatedWithAPriorityScheme", "Browse the priorities associated with a priority scheme."],
@@ -401,6 +404,35 @@ Update an existing Jira issue.
401
404
-**atlassian_cloud_id** (`string`, optional) The ID of the Atlassian Cloud to use (defaults to None). If not provided and the user has a single cloud authorized, the tool will use that. Otherwise, an error will be raised.
Retrieve sprints from Jira boards with filtering options for planning and tracking purposes.
423
+
424
+
**Parameters**
425
+
426
+
-**board_identifiers_list** (`array[string]`, optional) List of board names or numeric IDs (as strings) to retrieve sprints from. Include all mentioned boards in a single list for best performance. Optional, defaults to None.
427
+
-**max_sprints_per_board** (`integer`, optional) Maximum sprints per board (1-50). Latest sprints first. Optional, defaults to 50.
428
+
-**offset** (`integer`, optional) Number of sprints to skip per board for pagination. Optional, defaults to 0.
429
+
-**state** (`Enum`[SprintState](/toolkits/productivity/jira/reference#SprintState), optional) Filter by sprint state using SprintState enum value. Available options: SprintState.FUTURE (future sprints), SprintState.ACTIVE (active sprints), SprintState.CLOSED (closed sprints), SprintState.FUTURE_AND_ACTIVE (future + active), SprintState.FUTURE_AND_CLOSED (future + closed), SprintState.ACTIVE_AND_CLOSED (active + closed), SprintState.ALL (all states). Optional, defaults to None (all states).
430
+
-**start_date** (`string`, optional) Start date filter in YYYY-MM-DD format. Can combine with end_date. Optional, defaults to None.
431
+
-**end_date** (`string`, optional) End date filter in YYYY-MM-DD format. Can combine with start_date. Optional, defaults to None.
432
+
-**specific_date** (`string`, optional) Specific date in YYYY-MM-DD to find sprints active on that date. Cannot combine with start_date/end_date. Optional, defaults to None.
433
+
-**atlassian_cloud_id** (`string`, optional) Atlassian Cloud ID to use. Optional, defaults to None (uses single authorized cloud).
434
+
435
+
404
436
## Jira.ListLabels
405
437
406
438
<br />
@@ -784,6 +816,31 @@ Get the details of a Jira project by its ID or key.
784
816
-**atlassian_cloud_id** (`string`, optional) The ID of the Atlassian Cloud to use (defaults to None). If not provided and the user has a single cloud authorized, the tool will use that. Otherwise, an error will be raised.
Retrieve Jira boards either by specifying their names or IDs, or get all
835
+
836
+
**Parameters**
837
+
838
+
-**board_identifiers_list** (`array[string]`, optional) List of board names or numeric IDs (as strings) to retrieve using pagination. Include all mentioned boards in a single list for best performance. Default None retrieves all boards. Maximum 50 boards returned per call.
839
+
-**limit** (`integer`, optional) Maximum number of boards to return (1-50). Defaults to max that is 50.
840
+
-**offset** (`integer`, optional) Number of boards to skip for pagination. Must be 0 or greater. Defaults to 0.
841
+
-**atlassian_cloud_id** (`string`, optional) Atlassian Cloud ID to use. Defaults to None (uses single authorized cloud).
Copy file name to clipboardExpand all lines: pages/toolkits/productivity/jira/reference.mdx
+12Lines changed: 12 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,18 @@
2
2
3
3
Below is a reference of enumerations used by some tools in the Jira toolkit:
4
4
5
+
## SprintState
6
+
7
+
Sprint states are used in the `Jira.ListSprints` tool to filter sprints. The following enumeration values represent the possible states supported by the Jira API, either individually or in combination:
0 commit comments