Skip to main content
Glama
Yadley
by Yadley

Add Client

whmcs_add_client

Create a new client account in WHMCS with required details like name, email, address, and password. Store client information, assign optional group, currency, or language, and control welcome email delivery for immediate setup.

Instructions

Create a new client in WHMCS

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
cityYesCity
emailYesClient email address
notesNoAdmin notes
stateYesState/Province
countryYesCountry (2-letter ISO code)
groupidNoClient group ID
noemailNoDo not send welcome email
address1YesStreet address
address2NoAddress line 2
currencyNoCurrency ID
languageNoClient language
lastnameYesClient last name
postcodeYesPostal/ZIP code
firstnameYesClient first name
password2YesPassword for the client account
companynameNoCompany name
phonenumberYesPhone number

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.2.1

TDQS

B3.1/5.0
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 'Create a new client' but does not disclose side effects (e.g., welcome email sending, duplicate detection, or error behavior). The existence of a 'noemail' parameter suggests email behavior, but the description does not explain it.

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 a single concise sentence with no unnecessary words. However, it could include slightly more context (e.g., required parameters) 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 17 parameters (10 required) and no output schema, the description fails to provide context about which fields are mandatory, what 'password2' represents, or any ordering or dependencies. The agent would need to rely solely on the schema.

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?

All 17 parameters have descriptions in the schema (100% coverage). The description adds no additional meaning beyond what the schema already provides, so baseline score of 3 is appropriate.

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

Purpose5/5

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

The description clearly states 'Create a new client in WHMCS' which is a specific verb ('Create') and resource ('client'). It distinguishes from siblings like whmcs_update_client and whmcs_delete_client.

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 is provided on when to use this tool vs alternatives such as whmcs_update_client. There is no mention of preconditions like checking for existing email addresses or required setup steps.

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