jira_update_sprint
Update a Jira sprint by providing its ID and optional new name, state, start date, end date, or goal.
Instructions
Update jira sprint.
Args: ctx: The FastMCP context. sprint_id: The ID of the sprint. sprint_name: Optional new name. state: Optional new state (future|active|closed). start_date: Optional new start date. end_date: Optional new end date. goal: Optional new goal.
Returns: JSON string representing the updated sprint object or an error message.
Raises: ValueError: If in read-only mode or Jira client unavailable.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| goal | No | (Optional) New goal for the sprint | |
| state | No | (Optional) New state for the sprint (future|active|closed) | |
| end_date | No | (Optional) New end date for the sprint | |
| sprint_id | Yes | The id of sprint (e.g., '10001') | |
| start_date | No | (Optional) New start date for the sprint | |
| sprint_name | No | (Optional) New name for the sprint |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |