Skip to main content
Glama

list_services

Retrieve all deployed services on your Coolify self-hosted PaaS instance to monitor and manage applications, databases, and server operations.

Instructions

List all services

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The handler function for the 'list_services' tool. It dispatches to the Coolify API endpoint '/services' to list all services.
    case 'list_services': return client.get('/services');
  • Input schema definition for the 'list_services' tool. No parameters are required.
    { name: 'list_services', description: 'List all services', inputSchema: { type: 'object', properties: {}, required: [] } },
  • src/index.ts:36-38 (registration)
    Registration of tools list handler in MCP server, which returns definitions including 'list_services' via getToolDefinitions().
    this.server.setRequestHandler(ListToolsRequestSchema, async () => ({ tools: getToolDefinitions() }));
  • src/index.ts:57-57 (registration)
    Registration of tool call handler in MCP server, which dispatches to handleTool including the 'list_services' case.
    const result = await handleTool(this.client, name, args || {});

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