get_application_envs
Retrieve environment variables for a specific application in Coolify to configure deployment settings and manage application behavior.
Instructions
Get environment variables for an application
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| uuid | Yes | Application UUID |
Implementation Reference
- src/tools/handlers.ts:268-270 (handler)The handler function for 'get_application_envs' that requires an application 'uuid' and retrieves its environment variables by calling the Coolify API endpoint `/applications/{uuid}/envs`.case 'get_application_envs': requireParam(args, 'uuid'); return client.get(`/applications/${args.uuid}/envs`);
- src/tools/definitions.ts:870-878 (schema)The input schema for the 'get_application_envs' tool, defining the required 'uuid' parameter as a string.{ name: 'get_application_envs', description: 'Get environment variables for an application', inputSchema: { type: 'object', properties: { uuid: { type: 'string', description: 'Application UUID' } }, required: ['uuid'] } },