MCP Atlassian

jira_get_issue

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)
issue_keyYesJira issue key (e.g., 'PROJ-123')

Input Schema (JSON Schema)

{ "properties": { "comment_limit": { "default": null, "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" }, "issue_key": { "description": "Jira issue key (e.g., 'PROJ-123')", "type": "string" } }, "required": [ "issue_key" ], "type": "object" }