jira_search_issues
Search JIRA issues using JQL. Paginate through results with start_at and max_results.
Instructions
Search for JIRA issues using JQL (JIRA Query Language).
Returns a paginated result with total count. Use start_at to page through large result sets.
Args: jql: JQL query string (e.g., "project = PROJECT AND status = 'In Progress'") max_results: Maximum number of results to return (default: 50) start_at: Index of the first result (default: 0, for pagination)
Returns: Dict with issues array, total count, start_at, and max_results
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| jql | Yes | ||
| start_at | No | ||
| max_results | No |