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
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/handlers.ts:293-294 (handler)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');
- src/tools/definitions.ts:502-506 (schema)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 || {});