MCP Atlassian

by sooperset
Verified

jira_get_sprint_issues

Retrieve Jira issues from a specific sprint using Sprint ID. Specify fields, limit results, and set start index for precise data extraction on MCP Atlassian server.

Instructions

Get jira issues from sprint

Input Schema

NameRequiredDescriptionDefault
fieldsNoComma-separated fields to return in the results. Use '*all' for all fields, or specify individual fields like 'summary,status,assignee,priority'*all
limitNoMaximum number of results (1-50)
sprint_idYesThe id of sprint (e.g., '10001')
startNoStart index of issue

Input Schema (JSON Schema)

{ "properties": { "fields": { "default": "*all", "description": "Comma-separated fields to return in the results. Use '*all' for all fields, or specify individual fields like 'summary,status,assignee,priority'", "type": "string" }, "limit": { "default": 10, "description": "Maximum number of results (1-50)", "maximum": 50, "minimum": 1, "type": "number" }, "sprint_id": { "description": "The id of sprint (e.g., '10001')", "type": "string" }, "start": { "default": 0, "description": "Start index of issue", "type": "number" } }, "required": [ "sprint_id" ], "type": "object" }
ID: kc33m1kh5m