jira_search_issues
Search JIRA issues using JQL queries to filter by project, status, assignee, or text, and retrieve summaries of matching issues.
Instructions
Search for JIRA issues using JQL (JIRA Query Language). Use this to find issues based on various criteria like project, status, assignee, text content, etc. Returns a summary of matching issues.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| jql | Yes | JQL query string to search for issues. Examples: "project = IDS", "assignee = currentUser() AND status = Open", "key = IDS-10314". IMPORTANT: Use "key = ISSUE-123" to query a specific issue, NOT "text ~ ISSUE-123" which performs unnecessary full-text search. | |
| expand | No | Optional array of entities to expand. Example: ["changelog", "transitions"]. Common values: changelog, renderedFields, transitions | |
| fields | No | Optional array of field names to include. Example: ["summary", "status", "assignee"]. Strongly recommended to specify only needed fields to reduce data transfer. If omitted, returns common fields: summary, status, priority, assignee, reporter, created, updated, issuetype, project, labels, components | |
| startAt | No | Starting index for pagination as a number (default: 0). Use for fetching additional pages of results. Must be a number, not a string. | |
| maxResults | No | Maximum number of results to return as a number (default: 50, max: 100). Must be a number, not a string. | |
| properties | No | Optional array of issue properties to include. Example: ["prop1", "prop2"]. Use "*all" to include all properties |