list-applications
Fetch all applications managed by Coolify to view deployed services and monitor your application inventory.
Instructions
Fetch a list of all applications currently managed by Coolify. This provides an overview of all deployed applications.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.ts:159-167 (handler)The handler for the 'list-applications' tool. It calls the Coolify API endpoint '/applications' to fetch the list of applications and returns the result as formatted JSON text content.case "list-applications": { const apps = await coolifyApiCall('/applications'); return { content: [{ type: "text", text: JSON.stringify(apps, null, 2) }] }; }
- src/index.ts:88-92 (registration)Registration of the 'list-applications' tool in the ListToolsRequestSchema handler, including name, description, and empty input schema.{ name: "list-applications", description: "Fetch a list of all applications currently managed by Coolify. This provides an overview of all deployed applications.", inputSchema: zodToJsonSchema(z.object({})), },
- src/index.ts:91-91 (schema)Input schema for the 'list-applications' tool, defined as an empty object (no parameters required).inputSchema: zodToJsonSchema(z.object({})),