MCP Atlassian

by sooperset
Verified

jira_get_epic_issues

Retrieve all linked issues for a specific Jira epic using an epic key. Supports Jira Cloud and Server/Data Center deployments with configurable issue limits.

Instructions

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" }
ID: kc33m1kh5m