jira_search
Search Jira issues with a JQL query. Returns up to 50 matching issues with the same projection as jira_get_issue. Narrow the JQL if you need more — the hard cap exists to keep agent context bounded. Common JQL examples: project = ACME AND status = "In Progress", assignee = currentUser() AND created >= -7d, text ~ "login bug".
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| jql | Yes | Jira Query Language query. See https://confluence.atlassian.com/jirasoftwarecloud/advanced-search-reference-jql-fields | |
| maxResults | No | Max issues to return (default 20, hard cap 50). Increase only when you need a wider sweep. |