get_deployment
Retrieve deployment details by UUID to monitor application status and configuration in Coolify self-hosted PaaS instances.
Instructions
Get deployment details
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| uuid | Yes | Deployment UUID |
Implementation Reference
- src/tools/handlers.ts:427-429 (handler)The handler case for 'get_deployment' which validates the uuid parameter and calls the Coolify API endpoint `/deployments/{uuid}` to retrieve deployment details.case 'get_deployment': requireParam(args, 'uuid'); return client.get(`/deployments/${args.uuid}`);
- src/tools/definitions.ts:608-616 (schema)Tool schema definition including name, description, and input schema requiring a 'uuid' parameter of type string.{ name: 'get_deployment', description: 'Get deployment details', inputSchema: { type: 'object', properties: { uuid: { type: 'string', description: 'Deployment UUID' } }, required: ['uuid'] } },