list_deployments
View all active deployments on your Coolify PaaS instance to monitor application status and manage resources.
Instructions
List all deployments
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/handlers.ts:424-425 (handler)The handler case for 'list_deployments' tool that executes client.get('/deployments') to retrieve the list of all deployments from the Coolify API.case 'list_deployments': return client.get('/deployments');
- src/tools/definitions.ts:603-607 (schema)The schema definition for the 'list_deployments' tool, which requires no input parameters and lists all deployments.{ name: 'list_deployments', description: 'List all deployments', inputSchema: { type: 'object', properties: {}, required: [] } },
- src/index.ts:36-38 (registration)Registration of all tools via the ListToolsRequestHandler, which returns the tool definitions including 'list_deployments' from getToolDefinitions().this.server.setRequestHandler(ListToolsRequestSchema, async () => ({ tools: getToolDefinitions() }));
- src/tools/definitions.ts:33-33 (helper)'list_deployments' is included in READ_ONLY_TOOLS array, allowing it to be used even in read-only mode.'list_deployments',