list_resources
View all applications, services, and databases in your Coolify self-hosted PaaS instance to manage deployments and monitor resources.
Instructions
List all resources (applications, services, databases)
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/handlers.ts:491-492 (handler)Handler implementation for the 'list_resources' tool. Calls the Coolify API endpoint '/resources' to list all resources (applications, services, databases).case 'list_resources': return client.get('/resources');
- src/tools/definitions.ts:1175-1177 (schema)Schema definition for the 'list_resources' tool, specifying no required input parameters and providing description.name: 'list_resources', description: 'List all resources (applications, services, databases)', inputSchema: { type: 'object', properties: {}, required: [] }
- src/index.ts:36-38 (registration)Registration of all tools (including 'list_resources') via MCP's ListToolsRequestSchema handler, using getToolDefinitions() which includes the tool.this.server.setRequestHandler(ListToolsRequestSchema, async () => ({ tools: getToolDefinitions() }));
- src/tools/definitions.ts:1201-1206 (helper)getToolDefinitions function that returns the list of available tools, including 'list_resources' in both read-only and full modes since it's in READ_ONLY_TOOLS.export function getToolDefinitions() { if (isReadOnlyMode()) { return allToolDefinitions.filter(tool => READ_ONLY_TOOLS.includes(tool.name)); } return allToolDefinitions; }
- src/tools/definitions.ts:37-37 (helper)'list_resources' included in READ_ONLY_TOOLS array, ensuring it's available even in read-only mode.'list_resources',