MCP Azure DevOps Server

by Vortiago
Verified

get_team_members

Retrieve and format a list of team members in Azure DevOps by specifying project and team IDs, with options to limit or skip results for efficient data handling.

Instructions

Get a list of members for a specific team. 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

Input Schema

NameRequiredDescriptionDefault
project_idYes
skipNo
team_idYes
topNo

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" }

You must be authenticated.

Other Tools from MCP Azure DevOps Server

Related Tools

ID: 1t73gvug7p