Get Issue
jira_get_issueRetrieve details of a Jira issue including Epic links and relationships. Optionally inline comments, worklogs, transitions, and other enrichments to reduce separate tool calls.
Instructions
Get details of a specific Jira issue.
Includes Epic links and relationship information. Use the
include parameter to inline enrichments (remote_links,
transitions, watchers, changelog, comments, worklogs) so that
separate tool calls are not needed.
Args: ctx: The FastMCP context. issue_key: Jira issue key. fields: Comma-separated fields to return. expand: Optional fields to expand. comment_limit: Maximum number of comments. properties: Issue properties to return. update_history: Whether to update issue view history. include: Comma-separated enrichment sections to inline.
Returns: JSON string representing the Jira issue object.
Raises: ValueError: If the Jira client is not configured.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| expand | No | (Optional) Fields to expand. Examples: 'renderedFields' (for rendered content), 'transitions' (for available status transitions), 'changelog' (for history) | |
| fields | No | (Optional) Comma-separated list of fields to return (e.g., 'summary,status,customfield_10010'). You may also provide a single field as a string (e.g., 'duedate'). Use '*all' for all fields (including custom fields), or omit for essential fields only. | labels,versions,priority,description,reporter,status,summary,created,issuetype,updated,assignee |
| include | No | (Optional) Comma-separated sections to inline in the response, avoiding extra tool calls. Supported: all, remote_links, transitions, watchers, changelog, comments, worklogs | |
| issue_key | Yes | Jira issue key (e.g., 'PROJ-123', 'ACV2-642') | |
| properties | No | (Optional) A comma-separated list of issue properties to return | |
| comment_limit | No | Maximum number of comments to include (0 or null for no comments) | |
| update_history | No | Whether to update the issue view history for the requesting user |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |