list_applications
Retrieve all deployed applications from 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 core handler logic for the 'list_applications' tool. It makes a GET request to the Coolify API endpoint '/applications' to retrieve the list of all applications.case 'list_applications': return client.get('/applications');
- src/tools/definitions.ts:255-259 (schema)The input schema and metadata definition for the 'list_applications' tool. It requires no parameters and lists all applications.{ name: 'list_applications', description: 'List all applications', inputSchema: { type: 'object', properties: {}, required: [] } },
- src/index.ts:36-38 (registration)Registration of tools via ListToolsRequestSchema handler, which returns all tool definitions including 'list_applications' from getToolDefinitions().this.server.setRequestHandler(ListToolsRequestSchema, async () => ({ tools: getToolDefinitions() }));
- src/index.ts:57-67 (registration)The CallToolRequestSchema handler that dispatches to handleTool based on tool name, executing 'list_applications' when requested.const result = await handleTool(this.client, name, args || {}); return { content: [{ type: 'text', text: JSON.stringify(result, null, 2) }] }; } catch (error) { if (error instanceof McpError) throw error; const message = error instanceof Error ? error.message : 'Unknown error'; throw new McpError(ErrorCode.InternalError, `Tool execution failed: ${message}`); } });
- src/tools/definitions.ts:20-20 (helper)'list_applications' is included in READ_ONLY_TOOLS array, making it available in read-only mode.'list_applications',