list_team_members_tool
Retrieve a paginated list of team members with optional filtering by team name to manage and organize team structures.
Instructions
Return a paginated list of team members; supports optional filtering by team name.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cursor | No | Pagination cursor | |
team | No | Filter by team name |
Input Schema (JSON Schema)
{
"properties": {
"cursor": {
"default": null,
"description": "Pagination cursor",
"type": "string"
},
"team": {
"default": null,
"description": "Filter by team name",
"type": "string"
}
},
"type": "object"
}