Skip to main content
Glama

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

Implementation Reference

  • 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`);
  • 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'] } }
  • 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; }
  • 'get_team_members' listed as a read-only tool in the READ_ONLY_TOOLS array.
    'get_team_members',

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