Skip to main content
Glama

Coolify MCP Server

by StuMason
teams-api.yaml3.27 kB
openapi: 3.1.0 info: title: Coolify version: '0.1' paths: /teams: get: tags: - Teams summary: List description: Get all teams. operationId: list-teams responses: '200': description: List of teams. content: application/json: schema: type: array items: $ref: '#/components/schemas/Team' '400': $ref: '#/components/responses/400' '401': $ref: '#/components/responses/401' security: - bearerAuth: [] /teams/{id}: get: tags: - Teams summary: Get description: Get team by TeamId. operationId: get-team-by-id parameters: - name: id in: path description: Team ID required: true schema: type: integer responses: '200': description: List of teams. content: application/json: schema: $ref: '#/components/schemas/Team' '400': $ref: '#/components/responses/400' '401': $ref: '#/components/responses/401' '404': $ref: '#/components/responses/404' security: - bearerAuth: [] /teams/{id}/members: get: tags: - Teams summary: Members description: Get members by TeamId. operationId: get-members-by-team-id parameters: - name: id in: path description: Team ID required: true schema: type: integer responses: '200': description: List of members. content: application/json: schema: type: array items: $ref: '#/components/schemas/User' '400': $ref: '#/components/responses/400' '401': $ref: '#/components/responses/401' '404': $ref: '#/components/responses/404' security: - bearerAuth: [] /teams/current: get: tags: - Teams summary: Authenticated Team description: Get currently authenticated team. operationId: get-current-team responses: '200': description: Current Team. content: application/json: schema: $ref: '#/components/schemas/Team' '400': $ref: '#/components/responses/400' '401': $ref: '#/components/responses/401' security: - bearerAuth: [] /teams/current/members: get: tags: - Teams summary: Authenticated Team Members description: Get currently authenticated team members. operationId: get-current-team-members responses: '200': description: Currently authenticated team members. content: application/json: schema: type: array items: $ref: '#/components/schemas/User' '400': $ref: '#/components/responses/400' '401': $ref: '#/components/responses/401' security: - bearerAuth: []

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/StuMason/coolify-mcp'

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