create_sprint
Create a sprint with a required name and optional goal, dates, and state. Returns id for task scheduling.
Instructions
Create a sprint and return it (id, name, goal, state, dates). state is 'future' (default) or 'active'; start_date / end_date are optional ISO 8601. Only name is required. Schedule tasks into it by passing the returned sprint id as sprint_id on create_task / update_task.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| goal | No | The sprint goal (optional). | |
| name | Yes | Sprint name (the only required field), e.g. 'Sprint 12'. | |
| state | No | Lifecycle state (optional; default 'future'). | |
| end_date | No | End, ISO 8601 (optional). | |
| start_date | No | Start, ISO 8601 e.g. '2026-07-15T00:00:00Z' (optional). |