ItchWHMMCP
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@ItchWHMMCPCheck the server load and uptime on primary-server"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
ItchWHMMCP
A local Model Context Protocol (MCP) server for managing WHM and cPanel servers through MCP-compatible AI clients. It supports multiple WHM accounts from a private local configuration file and exposes server health, account, DNS, email, database, SSL, bandwidth, disk, cron, and service-management tools.
Security warning: this server can perform root-level WHM actions. Run it only on machines and with AI clients you trust, scope WHM API tokens as tightly as your workflow allows, and confirm destructive actions before execution.
Compatible Clients
Client | Config File | Notes |
| Full support | |
| Full support | |
| Full support | |
| Requires MCP support/extension | |
MCP settings UI | Full support | |
| Full support | |
Any stdio MCP host | Client-specific | Standard stdio transport |
Features
Category | Capabilities |
Server Health | Load averages, memory, CPU, uptime |
Account Management | List, create, suspend, unsuspend, terminate cPanel accounts |
DNS | List zones and query records per domain |
MySQL | List databases across the server |
Bandwidth | Usage per account or server-wide |
SSL | List installed certificates |
Services | Check and restart Apache, MySQL, Exim, FTP |
List and create mailboxes, list forwarders | |
Disk | Server-wide and per-account disk usage |
Cron Jobs | List scheduled tasks per cPanel account |
Subdomains | List subdomains and addon domains |
The server currently exposes 30 tools across WHM root-level and cPanel account-level operations.
Requirements
Python 3.11+
An MCP-compatible AI client
WHM server access with an API token
Installation
1. Clone the repository
git clone https://github.com/manofsadness/ItchWHMMCP.git
cd ItchWHMMCP2. Create a virtual environment
macOS / Linux:
python3 -m venv .venv
source .venv/bin/activateWindows:
python -m venv .venv
.venv\Scripts\Activate.ps13. Install dependencies
pip install mcp httpxConfiguration
Step 1 - Generate WHM API Tokens
For each server you want to connect:
Log in to WHM.
Open Development > Manage API Tokens.
Generate a token for this MCP server.
Copy the token immediately; WHM shows it only once.
Repeat for each server you want to manage.
Step 2 - Create your private accounts file
cp accounts.json.template accounts.jsonEdit accounts.json with your own server details:
{
"primary-server": {
"host": "server.example.com",
"port": 2087,
"user": "root",
"token": "YOUR_WHM_API_TOKEN_HERE",
"type": "whm",
"label": "Primary WHM Server"
},
"staging-server": {
"host": "staging.example.com",
"port": 2087,
"user": "root",
"token": "YOUR_SECOND_WHM_API_TOKEN_HERE",
"type": "whm",
"label": "Staging WHM Server"
}
}Never commit accounts.json, API tokens, real hostnames, IP addresses, client names, or production account aliases.
Client Setup
All clients need the same two values:
command: the Python executable inside.venvargs: the path tosrc/server.py
Use absolute paths in client configuration files.
Claude Desktop
Config file location:
OS | Path |
macOS |
|
Windows |
|
Linux |
|
{
"mcpServers": {
"ItchWHMMCP": {
"command": "/absolute/path/to/ItchWHMMCP/.venv/bin/python",
"args": ["/absolute/path/to/ItchWHMMCP/src/server.py"]
}
}
}Cursor
Create or edit .cursor/mcp.json:
{
"mcpServers": {
"ItchWHMMCP": {
"command": "/absolute/path/to/ItchWHMMCP/.venv/bin/python",
"args": ["/absolute/path/to/ItchWHMMCP/src/server.py"]
}
}
}Windsurf
Edit ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"ItchWHMMCP": {
"command": "/absolute/path/to/ItchWHMMCP/.venv/bin/python",
"args": ["/absolute/path/to/ItchWHMMCP/src/server.py"]
}
}
}VS Code
Create .vscode/mcp.json in your workspace:
{
"servers": {
"ItchWHMMCP": {
"type": "stdio",
"command": "/absolute/path/to/ItchWHMMCP/.venv/bin/python",
"args": ["/absolute/path/to/ItchWHMMCP/src/server.py"]
}
}
}Cline
Open Cline settings > MCP Servers > Add Server, choose stdio, then enter:
Command:
/absolute/path/to/ItchWHMMCP/.venv/bin/pythonArgs:
/absolute/path/to/ItchWHMMCP/src/server.py
Continue
Add to ~/.continue/config.json:
{
"mcpServers": [
{
"name": "ItchWHMMCP",
"command": "/absolute/path/to/ItchWHMMCP/.venv/bin/python",
"args": ["/absolute/path/to/ItchWHMMCP/src/server.py"]
}
]
}Any Other stdio MCP Host
Use mcp.json in the project root as a reference:
{
"name": "ItchWHMMCP",
"version": "1.0.0",
"transport": "stdio",
"command": "python",
"args": ["src/server.py"]
}Windows users should replace .venv/bin/python with .venv\Scripts\python.exe.
Usage Examples
Once connected, ask your AI client naturally:
List all configured WHM accounts
Check server load on primary-server
Show DNS records for example.com on primary-server
Is Apache running on staging-server?
List email accounts for user demo on primary-server
Check disk usage across all accounts on primary-server
Suspend account demo-user on staging-server for policy violation
Show all SSL certificates on primary-server
What cron jobs does user demo have on primary-server?Confirm the target server and account before running write operations such as account creation, suspension, termination, password changes, or service restarts.
Adding More Servers
Add another entry to accounts.json and restart your AI client. No code changes are required.
Project Structure
ItchWHMMCP/
|-- src/
| |-- server.py # MCP entry point
| |-- accounts.py # Multi-account loader
| `-- tools.py # WHM and cPanel tool definitions/handlers
|-- accounts.json.template # Safe template to copy from
|-- mcp.json # Generic MCP client reference config
|-- pyproject.toml
|-- CONTRIBUTING.md
|-- LICENSE
`-- README.mdLocal-only files such as accounts.json, .env, virtual environments, AI-agent notes, and personal client configuration should remain untracked.
Security Notes
WHM API tokens can be scoped and revoked per server from WHM.
accounts.jsonmust stay local and untracked.Avoid publishing real hostnames, IP addresses, account names, client names, API tokens, screenshots, or log output.
SSL verification is disabled by default for self-signed WHM certificates. If your server has a trusted certificate, enable verification in
src/tools.py.The MCP server runs locally as a subprocess of your AI client and does not open an inbound network port.
Review every destructive action before approving it in an AI client.
Contributing
Pull requests are welcome. Please read CONTRIBUTING.md before submitting changes.
License
MIT - see LICENSE for details.
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
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