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"],
      },
    });
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries full burden for behavioral disclosure but offers minimal information. It mentions 'manage' which implies both read and write operations, but doesn't specify authentication requirements, rate limits, error behavior, or what 'manage' entails for each operation type. The description is too vague about the tool's actual behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is efficiently structured as a single sentence listing the platform, interface, and resource areas. It's appropriately sized for a multi-operation tool, though it could be more front-loaded with clearer purpose. Every element earns its place by conveying scope.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a complex tool with 6 parameters, no annotations, and no output schema, the description is insufficient. It doesn't explain the multi-operation nature, authentication flow, error handling, or return formats. The agent must rely entirely on the input schema to understand how to use this tool effectively.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already documents all parameters thoroughly. The description adds no parameter-specific information beyond what's in the schema. It mentions general resource areas but doesn't explain how parameters like 'operation', 'domain', or 'params' relate to those areas. Baseline 3 is appropriate when the schema does the heavy lifting.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose as managing Verpex hosting via cPanel UAPI and lists key resource areas (domains, DNS, email, databases, SSL, cron, metrics). It distinguishes from sibling tools by specifying the Verpex platform, but doesn't explicitly differentiate from other cloud tools like boj_cloud_cloudflare or boj_cloud_vercel beyond the platform name.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. It doesn't mention when to choose Verpex management over other cloud tools, what prerequisites exist (like authentication), or any limitations. The agent must infer usage from the operation list alone.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

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

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