get_service_envs
Retrieve environment variables for a specific service in Coolify to configure application settings and manage deployment parameters.
Instructions
Get environment variables for a service
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| uuid | Yes | Service UUID |
Implementation Reference
- src/tools/handlers.ts:334-336 (handler)Handler implementation for the 'get_service_envs' tool. Requires a service UUID and fetches the environment variables via the CoolifyClient GET request to `/services/{uuid}/envs`.case 'get_service_envs': requireParam(args, 'uuid'); return client.get(`/services/${args.uuid}/envs`);
- src/tools/definitions.ts:984-991 (schema)Schema definition for the 'get_service_envs' tool, specifying the input schema that requires a 'uuid' parameter of type string.{ name: 'get_service_envs', description: 'Get environment variables for a service', inputSchema: { type: 'object', properties: { uuid: { type: 'string', description: 'Service UUID' } }, required: ['uuid'] }
- src/tools/definitions.ts:27-27 (helper)The tool is listed in READ_ONLY_TOOLS array, indicating it is available in read-only mode.'get_service_envs',