work_list_team_iterations
Retrieve current iterations for a specific team within a project in Azure DevOps. Input project and team details to track iteration progress and planning. Integrates with PAT-authenticated MCP server for secure access.
Instructions
Retrieve a list of iterations for a specific team in a project.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project | Yes | The name or ID of the Azure DevOps project. | |
team | Yes | The name or ID of the Azure DevOps team. | |
timeframe | No | The timeframe for which to retrieve iterations. Currently, only 'current' is supported. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"project": {
"description": "The name or ID of the Azure DevOps project.",
"type": "string"
},
"team": {
"description": "The name or ID of the Azure DevOps team.",
"type": "string"
},
"timeframe": {
"description": "The timeframe for which to retrieve iterations. Currently, only 'current' is supported.",
"enum": [
"current"
],
"type": "string"
}
},
"required": [
"project",
"team"
],
"type": "object"
}