get_all_teams
Retrieve all teams in an Azure DevOps organization, including names, IDs, descriptions, and associated projects. Filter results by user membership, skip certain teams, or limit the number returned for efficient organization-wide team management.
Instructions
Retrieves all teams in the Azure DevOps organization.
Use this tool when you need to:
- Get an overview of all teams across projects
- Find team IDs for use in other operations
- Determine which teams exist in the organization
- Locate specific teams by name
Args:
user_is_member_of: If true, return only teams where the current
user is a member. Otherwise return all teams the user
has read access to.
top: Maximum number of teams to return
skip: Number of teams to skip
Returns:
Formatted string containing team information including names,
IDs, descriptions, and associated projects, formatted as
markdown with each team clearly separated
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| skip | No | ||
| top | No | ||
| user_is_member_of | No |
Input Schema (JSON Schema)
{
"properties": {
"skip": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Skip"
},
"top": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Top"
},
"user_is_member_of": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": null,
"title": "User Is Member Of"
}
},
"title": "get_all_teamsArguments",
"type": "object"
}