get_team_members
Retrieve detailed team membership information, including member roles, emails, and IDs, for a specific team in Azure DevOps. Use this tool to view team composition, identify administrators, and manage user assignments effectively.
Instructions
Retrieves the membership roster for a specific team.
Use this tool when you need to:
- See who belongs to a particular team
- Find team administrators
- Check user assignments across teams
- Determine team size and composition
Args:
project_id: The name or ID (GUID) of the team project the team
belongs to
team_id: The name or ID (GUID) of the team
top: Maximum number of members to return
skip: Number of members to skip
Returns:
Formatted string containing team members information including
display names, emails, IDs, and administrator status, formatted
as markdown with each member clearly separated
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_id | Yes | ||
skip | No | ||
team_id | Yes | ||
top | No |
Input Schema (JSON Schema)
{
"properties": {
"project_id": {
"title": "Project Id",
"type": "string"
},
"skip": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Skip"
},
"team_id": {
"title": "Team Id",
"type": "string"
},
"top": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Top"
}
},
"required": [
"project_id",
"team_id"
],
"title": "get_team_membersArguments",
"type": "object"
}