Get Issue
get_issueGet complete details for any Jira issue by its key, including summary, description, status, comments, labels, and assignee.
Instructions
Fetches full details for a single issue (GET /rest/api/2/issue/{key}): summary, description, status, comments, labels, and assignee.
Confluence access: linked Confluence pages are NOT part of an issue's fields and are never returned here. In Jira Data Center they are stored as REMOTE LINKS. To read the Confluence content associated with an issue, an agent should:
Call
get_issue_remote_linkswith the same issueKey to list linked Confluence pages (each entry has aurllike .../pages/viewpage.action?pageId=).Extract the numeric
pageIdfrom that url (thepageId=query parameter).Call
confluence_get_pagewith that pageId andformat: "view"to get readable, server-rendered content (useformat: "storage"for the raw source). These Confluence tools are available when CONFLUENCE_BASE_URL is configured. Alternatively, useconfluence_searchwith a CQL query such astext ~ "<ISSUE-KEY>"to find pages that mention the issue.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| issueKey | Yes | Issue key, e.g. 'ABC-123' |