Whmcs MCP Tool MCP Server

MCP Server for managing WHMCS installations - clients, products, billing, tickets, domains, and integrations

Local serverstdioTypeScript

What is the Whmcs MCP Tool MCP server?

If you already use Whmcs MCP Tool, the whmcs mcp tool mcp server is the piece that lets your assistant work with it directly. MCP Server for managing WHMCS installations - clients, products, billing, tickets, domains, and integrations.

What the server does

A Model Context Protocol (MCP) server for managing WHMCS (Web Host Manager Complete Solution) installations. This server provides comprehensive tools for managing clients, products, billing, support tickets, domains, and more through the WHMCS API.

Available tools

The toolset is worth reading before you wire it up, because it tells you what the integration is really for:

  • whmcs_get_clients — Get list of clients
  • whmcs_get_client_details — Get detailed client information
  • whmcs_add_client — Create a new client
  • whmcs_update_client — Update an existing client
  • whmcs_delete_client — Delete a client
  • whmcs_get_client_products — Get client's products/services
  • whmcs_get_client_domains — Get client's domains
  • whmcs_get_products — Get available products
  • whmcs_get_product_groups — Get product groups
  • whmcs_get_invoices — Get invoices
  • whmcs_get_invoice — Get invoice details
  • whmcs_create_invoice — Create an invoice

Installation

Installation goes through your MCP client rather than a global install: point it at tsx on npm and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.

Credentials and setup notes

Configuration is passed through the environment: WHMCS_API_URL, WHMCS_API_SECRET, WHMCS_ACCESS_KEY. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Where it fits

Among the payments and commerce options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Whmcs MCP Tool's toolset — whmcs_get_clients, whmcs_get_client_details, whmcs_add_client and 11 more — is a fair guide to whether it matches your workflow. It is maintained by scarecr0w12; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Worth knowing first

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Whmcs MCP Tool.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
whmcs_get_clientsGet list of clients
whmcs_get_client_detailsGet detailed client information
whmcs_add_clientCreate a new client
whmcs_update_clientUpdate an existing client
whmcs_delete_clientDelete a client
whmcs_get_client_productsGet client's products/services
whmcs_get_client_domainsGet client's domains
whmcs_get_productsGet available products
whmcs_get_product_groupsGet product groups
whmcs_get_invoicesGet invoices
whmcs_get_invoiceGet invoice details
whmcs_create_invoiceCreate an invoice
whmcs_update_invoiceUpdate an invoice
whmcs_add_paymentAdd payment to invoice

How to install the Whmcs MCP Tool MCP server

{
  "mcpServers": {
    "whmcs-mcp-tool": {
      "command": "npx",
      "args": ["-y", "tsx"],
      "env": {
        "WHMCS_API_URL": "your-value",
        "WHMCS_API_SECRET": "your-value",
        "WHMCS_ACCESS_KEY": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
WHMCS_API_URLEndpoint or connection string the server talks to.Yes
WHMCS_API_SECRETCredential the server authenticates with.Yes
WHMCS_ACCESS_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use Whmcs MCP Tool to whmcs get clients.
  • Use Whmcs MCP Tool to whmcs get client details.
  • Use Whmcs MCP Tool to whmcs add client.

Frequently asked questions

It connects Whmcs MCP Tool to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (whmcs_get_clients, whmcs_get_client_details, whmcs_add_client, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Whmcs MCP Tool directly.