jira_get
Retrieve complete details of a Jira issue: summary, description, status, assignee, sprint, transitions, comments, and attachments.
Instructions
Full details for one Jira issue: summary, description, status, assignee, sprint, available transitions, recent comments, and a list of attachments (filename, size, mime type, attachment ID). To view an attachment's contents (e.g. an image), call jira_get_attachment with the attachment ID surfaced here.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| issueKey | Yes | Jira issue key, e.g. FOO-123 | |
| includeComments | No | Include comments (default true) | |
| commentsMaxResults | No | Max comments (default 10) | |
| commentsStartAt | No | Comment pagination offset (default 0) | |
| includeTransitions | No | Include available transitions (default true) | |
| includeSprint | No | Include sprint data (default true) | |
| fullDescription | No | Return the full description even when long (default false — descriptions over ~2000 chars are truncated to save context) |