Skip to main content
Glama

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
NameRequiredDescriptionDefault
uuidYesService UUID

Implementation Reference

  • 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`);
  • 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']
      }
  • The tool is listed in READ_ONLY_TOOLS array, indicating it is available in read-only mode.
    'get_service_envs',
Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/kof70/coolify-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server