Skip to main content
Glama

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
NameRequiredDescriptionDefault
team_idYesTeam ID

Implementation Reference

  • 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}`);
  • 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 || {});
  • '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' ];

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/kof70/coolify-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server