jira_create_sprint
Create a Jira sprint for a board by providing the board ID, sprint name, start and end dates, and an optional goal. Organize work into time-boxed iterations.
Instructions
Create Jira sprint for a board.
Args: ctx: The FastMCP context. board_id: Board ID. sprint_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 |
|---|---|---|---|
| goal | No | (Optional) Goal of the sprint | |
| board_id | Yes | The id of board (e.g., '1000') | |
| end_date | Yes | End time for sprint (ISO 8601 format) | |
| start_date | Yes | Start time for sprint (ISO 8601 format) | |
| sprint_name | Yes | Name of the sprint (e.g., 'Sprint 1') |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |