MCP Atlassian

jira_get_issue

Retrieve detailed Jira issue information, including Epic links, relationships, and optional fields like comments or changelog, using the MCP Atlassian server integration.

Instructions

Get details of a specific Jira issue including its Epic links and relationship information

Input Schema

NameRequiredDescriptionDefault
comment_limitNoMaximum number of comments to include (0 or null for no comments)
expandNoOptional fields to expand. Examples: 'renderedFields' (for rendered content), 'transitions' (for available status transitions), 'changelog' (for history)
fieldsNoFields to return. Can be a comma-separated list (e.g., 'summary,status,customfield_10010'), '*all' for all fields (including custom fields), or omitted for essential fields onlysummary,description,status,assignee,reporter,labels,priority,created,updated,issuetype
issue_keyYesJira issue key (e.g., 'PROJ-123')
propertiesNoA comma-separated list of issue properties to return
update_historyNoWhether to update the issue view history for the requesting user

Input Schema (JSON Schema)

{ "properties": { "comment_limit": { "default": 10, "description": "Maximum number of comments to include (0 or null for no comments)", "maximum": 100, "minimum": 0, "type": "integer" }, "expand": { "default": null, "description": "Optional fields to expand. Examples: 'renderedFields' (for rendered content), 'transitions' (for available status transitions), 'changelog' (for history)", "type": "string" }, "fields": { "default": "summary,description,status,assignee,reporter,labels,priority,created,updated,issuetype", "description": "Fields to return. Can be a comma-separated list (e.g., 'summary,status,customfield_10010'), '*all' for all fields (including custom fields), or omitted for essential fields only", "type": "string" }, "issue_key": { "description": "Jira issue key (e.g., 'PROJ-123')", "type": "string" }, "properties": { "default": null, "description": "A comma-separated list of issue properties to return", "type": "string" }, "update_history": { "default": true, "description": "Whether to update the issue view history for the requesting user", "type": "boolean" } }, "required": [ "issue_key" ], "type": "object" }
ID: kc33m1kh5m