Skip to main content
Glama

get_server_domains

Retrieve domains configured on a Coolify server using its UUID to manage web application deployments and DNS settings.

Instructions

Get domains configured on a server

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
uuidYesServer UUID

Implementation Reference

  • Handler implementation for the 'get_server_domains' tool. Validates the 'uuid' parameter and makes a GET request to the Coolify API endpoint `/servers/{uuid}/domains` to retrieve the domains configured on the server.
    case 'get_server_domains':
      requireParam(args, 'uuid');
      return client.get(`/servers/${args.uuid}/domains`);
  • Schema definition for the 'get_server_domains' tool, specifying the input schema that requires a 'uuid' parameter of type string (Server UUID). Also includes description.
    {
      name: 'get_server_domains',
      description: 'Get domains configured on a server',
      inputSchema: {
        type: 'object',
        properties: { uuid: { type: 'string', description: 'Server UUID' } },
        required: ['uuid']
      }
    },
  • The tool is listed in the READ_ONLY_TOOLS array, indicating it is available in read-only mode.
    'get_server_domains',
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