jira_issues_search
Search Jira issues using JQL queries. Find issues by project, status, assignee, or custom criteria, with pagination support.
Instructions
Search Jira issues using JQL.
Use this to find issues matching criteria. Prefer targeted JQL over broad searches. Not this when you know the exact issue key: use jira_issues_get instead. Returns: {total, issues: [{key, summary, status, assignee, ...}], next_page_token}
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| jql_query | Yes | JQL query string. Examples: 'project = PROJ AND status = "To Do"', 'assignee = currentUser() ORDER BY updated DESC' | |
| fields | No | Comma-separated field names to return. Default: key,summary,status,assignee,priority,issuetype,updated | key,summary,status,assignee,priority,issuetype,updated |
| max_results | No | Maximum results (1-100). Default: 50 | |
| next_page_token | No | Token for next page, from a previous search call | |
| detail | No | 'summary' (default) or 'full' (includes description, custom fields) | summary |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||