list-deployments
Retrieve a list of all active deployments in Coolify, including status and history, for efficient application management and monitoring.
Instructions
Retrieve a list of all running deployments in Coolify. This includes details about the deployment status and history.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.ts:244-252 (handler)The handler function for the 'list-deployments' tool. It calls the Coolify API endpoint '/deployments' using the shared coolifyApiCall helper and returns the JSON response formatted as tool content.case "list-deployments": { const deployments = await coolifyApiCall('/deployments'); return { content: [{ type: "text", text: JSON.stringify(deployments, null, 2) }] }; }
- src/index.ts:123-127 (registration)Registration of the 'list-deployments' tool in the ListToolsRequestHandler response, including name, description, and input schema (empty object).{ name: "list-deployments", description: "Retrieve a list of all running deployments in Coolify. This includes details about the deployment status and history.", inputSchema: zodToJsonSchema(z.object({})), },