get_team
Retrieve detailed information about a specific team in Coolify, including configuration and settings, by providing the team ID.
Instructions
Get details of a specific team
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| team_id | Yes | Team ID |
Implementation Reference
- src/tools/handlers.ts:59-61 (handler)The core handler logic for the 'get_team' tool. It requires a 'team_id' parameter and makes a GET request to the Coolify API endpoint `/teams/${team_id}` to retrieve team details.case 'get_team': requireParam(args, 'team_id'); return client.get(`/teams/${args.team_id}`);
- src/tools/definitions.ts:129-139 (schema)The JSON schema definition for the 'get_team' tool, specifying the required 'team_id' input parameter.{ name: 'get_team', description: 'Get details of a specific team', inputSchema: { type: 'object', properties: { team_id: { type: 'string', description: 'Team ID' } }, required: ['team_id'] } },
- src/index.ts:36-38 (registration)Tool registration in the MCP server: the ListTools handler returns all tool definitions (including 'get_team') from getToolDefinitions().this.server.setRequestHandler(ListToolsRequestSchema, async () => ({ tools: getToolDefinitions() }));
- src/index.ts:57-57 (registration)The CallTool handler dispatches to handleTool, which contains the specific case for 'get_team'.const result = await handleTool(this.client, name, args || {});
- src/tools/definitions.ts:4-42 (helper)'get_team' is listed as a read-only tool, affecting availability in read-only mode.export const READ_ONLY_TOOLS = [ 'get_version', 'health_check', 'list_teams', 'get_team', 'get_current_team', 'get_current_team_members', 'get_team_members', 'list_servers', 'get_server', 'get_server_resources', 'get_server_domains', 'list_projects', 'get_project', 'list_environments', 'get_environment', 'list_applications', 'get_application', 'get_application_logs', 'get_application_envs', 'get_application_deployments', 'list_services', 'get_service', 'get_service_envs', 'get_service_logs', 'list_databases', 'get_database', 'get_database_backups', 'get_database_logs', 'list_deployments', 'get_deployment', 'list_private_keys', 'get_private_key', 'list_resources', 'list_github_apps', 'get_github_app', 'get_github_app_repositories', 'get_github_app_repository_branches' ];