Skip to main content
Glama

cpanel_ssl_check

Check SSL certificate status and expiry for domains in a cPanel account to prevent downtime.

Instructions

Check SSL certificate status and expiry for a cPanel account's domains

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
accountYesAccount alias from accounts.json (use list_accounts to see options)
cpanel_userYes

Implementation Reference

  • Handler for cpanel_ssl_check: calls cPanel UAPI SSL->list_certs to check SSL certificate status and expiry.
    case "cpanel_ssl_check":
        return await _get(client, url("SSL", "list_certs"), headers)
  • Schema definition for cpanel_ssl_check: requires 'account' and 'cpanel_user' parameters.
    Tool(
        name="cpanel_ssl_check",
        description="Check SSL certificate status and expiry for a cPanel account's domains",
        inputSchema={
            "type": "object",
            "properties": {
                **ACCOUNT_PARAM,
                "cpanel_user": {"type": "string"}
            },
            "required": ["account", "cpanel_user"]
        }
    ),
  • src/server.py:70-71 (registration)
    Registration/dispatch: server.py routes cpanel_* tools (including cpanel_ssl_check) to handle_cpanel_tool.
    elif name.startswith("cpanel_"):
        result = await handle_cpanel_tool(client, account, name, arguments)
Behavior2/5

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

No annotations are provided, so the description carries full burden. It only says 'check', implying read-only, but does not disclose whether it makes changes, requires special permissions, or any side effects. Insufficient for a safe agent decision.

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?

Description is a single concise sentence that is front-loaded. It conveys the essential purpose without fluff, though it could include more detail without becoming verbose.

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?

With no output schema and low parameter complexity, the description should explain return value structure or format. It does not, leaving agents uncertain about what to expect from the tool.

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

Parameters2/5

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

Schema coverage is 50% (only 'account' has a description). The tool description adds no parameter details beyond the schema. The 'cpanel_user' parameter lacks any explanation, leaving agents to infer its purpose.

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 checks SSL certificate status and expiry for cPanel account domains. The verb 'check' and resource 'SSL certificate status and expiry' are specific, and it distinguishes from siblings like whm_ssl_list which is server-level.

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?

No guidance on when to use this tool versus alternatives. It does not mention scenarios where this tool is preferred or any prerequisites, leaving the agent without context for selection.

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/manofsadness/ItchWHMMCP'

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