get_service
Retrieve service details using its UUID to access configuration, status, and operational information for management.
Instructions
Get service details by UUID
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| uuid | Yes | Service UUID |
Implementation Reference
- src/tools/handlers.ts:322-324 (handler)Handler implementation for the 'get_service' tool. Requires 'uuid' parameter and calls the Coolify client to GET /services/{uuid}.case 'get_service': requireParam(args, 'uuid'); return client.get(`/services/${args.uuid}`);
- src/tools/definitions.ts:950-957 (schema)Schema definition for the 'get_service' tool, defining the input schema requiring a 'uuid' string.name: 'get_service', description: 'Get service details by UUID', inputSchema: { type: 'object', properties: { uuid: { type: 'string', description: 'Service UUID' } }, required: ['uuid'] } },