get_application_deployments
Retrieve deployment history for a specific application in Coolify to monitor release status and track changes.
Instructions
Get all deployments for an application
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| uuid | Yes | Application UUID |
Implementation Reference
- src/tools/handlers.ts:435-437 (handler)The handler case in the main switch statement that implements the tool logic: requires application 'uuid' and fetches deployments via the Coolify client GET /deployments/applications/{uuid}.case 'get_application_deployments': requireParam(args, 'uuid'); return client.get(`/deployments/applications/${args.uuid}`);
- src/tools/definitions.ts:1165-1173 (schema)The tool definition object in allToolDefinitions array, providing name, description, and input schema (requires 'uuid' of type string). This schema is used for MCP tool registration.{ name: 'get_application_deployments', description: 'Get all deployments for an application', inputSchema: { type: 'object', properties: { uuid: { type: 'string', description: 'Application UUID' } }, required: ['uuid'] } },
- src/tools/definitions.ts:24-24 (registration)Inclusion in READ_ONLY_TOOLS array, marking it as a read-only tool that is always available even in read-only mode.'get_application_deployments',