list-services
Retrieve all services managed by Coolify, including external services and microservices, to view and manage your application infrastructure.
Instructions
Retrieve a list of all services managed by Coolify. This includes external services and microservices.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.ts:224-232 (handler)Handler for the 'list-services' tool. Calls the Coolify API endpoint '/services' and returns the services list as formatted JSON.case "list-services": { const services = await coolifyApiCall('/services'); return { content: [{ type: "text", text: JSON.stringify(services, null, 2) }] }; }
- src/index.ts:113-117 (registration)Tool registration in the ListTools response, including name, description, and input schema (empty object).{ name: "list-services", description: "Retrieve a list of all services managed by Coolify. This includes external services and microservices.", inputSchema: zodToJsonSchema(z.object({})), },