MCP Atlassian

jira_get_epic_issues

Get all issues linked to a specific epic

Input Schema

NameRequiredDescriptionDefault
epic_keyYesThe key of the epic (e.g., 'PROJ-123')
limitNoMaximum number of issues to return (1-50)

Input Schema (JSON Schema)

{ "properties": { "epic_key": { "description": "The key of the epic (e.g., 'PROJ-123')", "type": "string" }, "limit": { "default": 10, "description": "Maximum number of issues to return (1-50)", "maximum": 50, "minimum": 1, "type": "number" } }, "required": [ "epic_key" ], "type": "object" }