Create Sprint
jira_create_sprintCreate a new Jira sprint by specifying board ID, sprint name, dates, and optional goal to organize development work in Atlassian instances.
Instructions
Create Jira sprint for a board.
Args: ctx: The FastMCP context. board_id: Board ID. name: Sprint name. start_date: Start date (ISO format). end_date: End date (ISO format). goal: Optional sprint goal.
Returns: JSON string representing the created sprint object.
Raises: ValueError: If in read-only mode or Jira client unavailable.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| board_id | Yes | The id of board (e.g., '1000') | |
| name | Yes | Name of the sprint (e.g., 'Sprint 1') | |
| start_date | Yes | Start time for sprint (ISO 8601 format) | |
| end_date | Yes | End time for sprint (ISO 8601 format) | |
| goal | No | (Optional) Goal of the sprint |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |