list_applications
Retrieve all deployed applications in your Coolify self-hosted PaaS instance to manage and monitor your projects.
Instructions
List all applications
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/handlers.ts:144-145 (handler)The handler implementation for the 'list_applications' tool. It simply calls the CoolifyClient's GET request to the '/applications' endpoint to retrieve the list of all applications.case 'list_applications': return client.get('/applications');
- src/tools/definitions.ts:255-258 (schema)The schema definition for the 'list_applications' tool, specifying its name, description, and empty input schema (no required parameters). This is part of the allToolDefinitions array used to register tools with MCP.{ name: 'list_applications', description: 'List all applications', inputSchema: { type: 'object', properties: {}, required: [] }
- src/tools/definitions.ts:20-20 (registration)The 'list_applications' tool is registered in the READ_ONLY_TOOLS array, making it available even in read-only mode via getToolDefinitions().'list_applications',