Skip to main content
Glama

boj_cloud_verpex

Manage Verpex hosting services through cPanel UAPI to handle domains, DNS, email, databases, SSL certificates, cron jobs, and performance metrics.

Instructions

Manage Verpex hosting via cPanel UAPI — domains, DNS, email, databases, SSL, cron, metrics

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
operationYesThe Verpex operation to perform
hostnameNocPanel hostname (for authenticate)
usernameNocPanel username (for authenticate)
api_tokenNocPanel API token (for authenticate)
domainNoDomain name (for DNS, SSL operations)
paramsNoAdditional operation parameters

Implementation Reference

  • The handler for 'boj_cloud_verpex' calls 'invokeCartridge' with the 'cloud-mcp' cartridge.
    case "boj_cloud_verpex":
    case "boj_cloud_cloudflare":
    case "boj_cloud_vercel": {
      const result = await invokeCartridge("cloud-mcp", { provider: toolName.replace("boj_cloud_", ""), ...args });
      sendResult(id, { content: [{ type: "text", text: JSON.stringify(result, null, 2) }] });
      break;
    }
  • Tool 'boj_cloud_verpex' registration definition.
    tools.push({
      name: "boj_cloud_verpex",
      description: "Manage Verpex hosting via cPanel UAPI — domains, DNS, email, databases, SSL, cron, metrics",
      inputSchema: {
        type: "object",
        properties: {
          operation: { type: "string", enum: ["authenticate", "list-domains", "dns-list", "dns-add", "dns-remove", "email-list", "email-create", "databases-list", "database-create", "ssl-status", "cron-list", "metrics"], description: "The Verpex operation to perform" },
          hostname: { type: "string", description: "cPanel hostname (for authenticate)" },
          username: { type: "string", description: "cPanel username (for authenticate)" },
          api_token: { type: "string", description: "cPanel API token (for authenticate)" },
          domain: { type: "string", description: "Domain name (for DNS, SSL operations)" },
          params: { type: "object", description: "Additional operation parameters" },
        },
        required: ["operation"],
      },
    });

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/hyperpolymath/boj-server'

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