jira_search_issues
Search JIRA issues using JQL queries, returning up to 50 results. Always include a project or assignee filter to avoid rejection by JIRA.
Instructions
Search for issues using JQL (JIRA Query Language). Returns up to 50 issues by default. IMPORTANT: Queries must be bounded with a project filter or other restriction (e.g., assignee, sprint) - unbounded queries are rejected by JIRA. Example: "project = PROJ AND status = "In Progress""
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| jql | Yes | JQL query string | |
| fields | No | Fields to include in the response. Default: ["key", "summary", "status", "statusCategory", "assignee", "type", "parent"]. Use "customFields" to include custom fields. | |
| maxResults | No | Maximum number of results to return. Defaults to 50 if not specified. | |
| nextPageToken | No | Token for fetching the next page of results. Use the nextPageToken from a previous response to continue pagination. |