get_current_team
Retrieve details about the current team in Coolify to manage deployments, databases, and server operations.
Instructions
Get details of the current team
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/handlers.ts:63-64 (handler)The handler case in the main handleTool switch statement that implements the 'get_current_team' tool by calling the Coolify API GET /teams/current endpoint.case 'get_current_team': return client.get('/teams/current');
- src/tools/definitions.ts:140-144 (schema)The input schema and metadata definition for the 'get_current_team' tool, indicating no parameters are required.{ name: 'get_current_team', description: 'Get details of the current team', inputSchema: { type: 'object', properties: {}, required: [] } },
- src/tools/definitions.ts:9-9 (registration)Inclusion of 'get_current_team' in the READ_ONLY_TOOLS array, which determines if the tool is exposed in read-only mode.'get_current_team',