get_team_members
Retrieve all members associated with a specific team ID in Coolify to manage team composition and access permissions.
Instructions
Get members of a specific team
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| team_id | Yes | Team ID |
Implementation Reference
- src/tools/handlers.ts:495-497 (handler)Handler implementation for the 'get_team_members' tool. Validates the required 'team_id' parameter and makes an API call to retrieve members of the specified team via the CoolifyClient.case 'get_team_members': requireParam(args, 'team_id'); return client.get(`/teams/${args.team_id}/members`);
- src/tools/definitions.ts:1179-1187 (schema)Input schema and metadata definition for the 'get_team_members' tool, including name, description, and required 'team_id' parameter.{ name: 'get_team_members', description: 'Get members of a specific team', inputSchema: { type: 'object', properties: { team_id: { type: 'string', description: 'Team ID' } }, required: ['team_id'] } }
- src/tools/definitions.ts:1201-1206 (registration)Registration function that provides the list of available tool definitions, including 'get_team_members' conditionally based on read-only mode.export function getToolDefinitions() { if (isReadOnlyMode()) { return allToolDefinitions.filter(tool => READ_ONLY_TOOLS.includes(tool.name)); } return allToolDefinitions; }
- src/tools/definitions.ts:11-11 (helper)'get_team_members' listed as a read-only tool in the READ_ONLY_TOOLS array.'get_team_members',