get_team_iterations
Retrieve a team's sprint details, including active, past, and future iterations, to plan work, track progress, and manage capacity effectively in Azure DevOps.
Instructions
Retrieves the iterations (sprints) assigned to a specific team.
Use this tool when you need to:
- View a team's sprint schedule
- Find date ranges for iterations
- Determine which iteration is currently active
- Plan work based on team's iteration calendar
IMPORTANT: Iterations in Azure DevOps define time periods for planning
and tracking work. They determine sprint dates and are used for
capacity planning, burndown charts, and velocity calculations.
Args:
project_name_or_id: The name or ID of the team project
team_name_or_id: The name or ID of the team
current: If True, return only the current iteration
Returns:
Formatted string containing team iteration information including
names, date ranges, and time frames (past/current/future),
formatted as markdown
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| current | No | ||
| project_name_or_id | Yes | ||
| team_name_or_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"current": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": null,
"title": "Current"
},
"project_name_or_id": {
"title": "Project Name Or Id",
"type": "string"
},
"team_name_or_id": {
"title": "Team Name Or Id",
"type": "string"
}
},
"required": [
"project_name_or_id",
"team_name_or_id"
],
"title": "get_team_iterationsArguments",
"type": "object"
}