list_team
View team members and their roles to manage team structure and access permissions within the Cuti-E admin platform.
Instructions
List all team members with their roles.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- index.js:464-467 (handler)The handler for "list_team" tool, which executes a GET request to the "/v1/team" API endpoint.
case "list_team": { result = await apiRequest("GET", "/v1/team"); break; } - index.js:257-264 (registration)The registration block for "list_team" tool, defining its name, description, and empty input schema.
name: "list_team", description: "List all team members with their roles.", inputSchema: { type: "object", properties: {}, }, },