Skip to main content
ClaudeWave

MCP server exposing cPanel UAPI (domains, DNS, email, MySQL, files) as tools for AI assistants

MCP ServersRegistry oficial0 estrellas0 forksJavaScriptMITActualizado today
Install in Claude Code / Claude Desktop
Method: Manual
Claude Code CLI
git clone https://github.com/RodrigueDev13/obambu-cpanel-mcp
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "obambu-cpanel-mcp": {
      "command": "node",
      "args": ["/path/to/obambu-cpanel-mcp/dist/index.js"]
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
💡 Clone https://github.com/RodrigueDev13/obambu-cpanel-mcp and follow its README for install instructions.
Casos de uso

Resumen de MCP Servers

# obambu-cpanel-mcp

A [Model Context Protocol](https://modelcontextprotocol.io) (MCP) server that lets an AI assistant (Claude, etc.) manage a cPanel hosting account through the [cPanel UAPI](https://api.docs.cpanel.net/openapi/cpanel/overview/).

It exposes tools for domains, DNS zones, email accounts, MySQL databases, and file listing, plus a generic escape hatch to call any other UAPI module/function.

## Requirements

- Node.js 18+
- A cPanel account with API token access (Security → Manage API Tokens in cPanel)

## Getting your cPanel credentials (Obambu example)

The four env vars below can come from any cPanel host, but here's how to find them on **Obambu**:

- **`CPANEL_HOST`** — your server hostname, e.g. `cp4.obambu.com` (or your own domain if cPanel is reachable at `https://yourdomain.com:2083`). Find it in your Obambu welcome email, or in your domain's DNS zone: look for an `A` record named `cpanel` (e.g. `cpanel.yourdomain.com`) — that same server also answers at its `cpX.obambu.com` hostname.
- **`CPANEL_PORT`** — `00000` (cPanel's default HTTPS port). Leave it unless your host says otherwise.
- **`CPANEL_USERNAME`** — your cPanel account username, shown top-right when logged into cPanel, or in the welcome email Obambu sent when the hosting account was created.
- **`CPANEL_API_TOKEN`** — generate one yourself, it is *not* your cPanel password:
  1. Log into cPanel at `https://<CPANEL_HOST>:00000`
  2. Go to **Security → Manage API Tokens**
  3. Click **Create**, give it a name (e.g. `mcp-server`), optionally restrict it to specific ACLs, then **Create**
  4. Copy the token immediately — cPanel only shows it once

## Using it with an MCP client (npx, recommended)

Published on npm as [`obambu-cpanel-mcp`](https://www.npmjs.com/package/obambu-cpanel-mcp) — no clone or build needed. Add it to your MCP client config (e.g. Claude Desktop / Claude Code):

```json
{
  "mcpServers": {
    "obambu-cpanel": {
      "command": "npx",
      "args": ["-y", "obambu-cpanel-mcp"],
      "env": {
        "CPANEL_HOST": "your-server-hostname-or-ip",
        "CPANEL_PORT": "00000",
        "CPANEL_USERNAME": "your-cpanel-username",
        "CPANEL_API_TOKEN": "your-api-token"
      }
    }
  }
}
```

## Running from source

```bash
git clone https://github.com/RodrigueDev13/obambu-cpanel-mcp.git
cd obambu-cpanel-mcp
npm install
cp .env.example .env
```

Edit `.env` with your cPanel details, then:

```bash
npm run build
npm start
```

For local development without building first:

```bash
npm run dev
```

When running from source, point your MCP client at the built entrypoint instead of `npx`:

```json
{
  "mcpServers": {
    "obambu-cpanel": {
      "command": "node",
      "args": ["/absolute/path/to/obambu-cpanel-mcp/dist/index.js"],
      "env": {
        "CPANEL_HOST": "your-server-hostname-or-ip",
        "CPANEL_PORT": "00000",
        "CPANEL_USERNAME": "your-cpanel-username",
        "CPANEL_API_TOKEN": "your-api-token"
      }
    }
  }
}
```

## Available tools

| Tool | Description |
|---|---|
| `get_account_summary` | Disk/bandwidth quota usage and general stats |
| `list_domains` | Domains, subdomains, addon domains and parked domains |
| `list_dns_records` | Read a domain's DNS zone |
| `add_dns_record` | Add a DNS record |
| `edit_dns_record` | Edit an existing DNS record |
| `remove_dns_record` | Remove a DNS record |
| `list_emails` | List email accounts |
| `create_email` | Create an email account |
| `delete_email` | Delete an email account |
| `list_files` | List files/directories under the account home directory |
| `list_databases` | List MySQL databases |
| `list_database_users` | List MySQL database users |
| `create_database` | Create a MySQL database |
| `create_database_user` | Create a MySQL database user |
| `grant_database_privileges` | Grant a user privileges on a database |
| `cpanel_uapi_call` | Call any UAPI module/function directly for anything not covered above |

## Usage examples

Once connected, just talk to your assistant in plain language — it picks the right tool:

- *"Test the connection to my cPanel account"* → `get_account_summary`
- *"What domains and subdomains are on this hosting account?"* → `list_domains`
- *"Show me the DNS records for example.com"* → `list_dns_records`
- *"Add an A record for shop.example.com pointing to 1.2.3.4"* → `add_dns_record`
- *"Create a mailbox contact@example.com"* → `create_email`
- *"Create a MySQL database and user for my new app, then grant privileges"* → `create_database` + `create_database_user` + `grant_database_privileges`
- *"List the files in public_html"* → `list_files`
- *"Read config/filesystems.php and fix this path"* → `cpanel_uapi_call` with `module: "Fileman", function: "get_file_content"` / `save_file_content`

Because tool calls map directly to UAPI modules, this is also useful for real migration/deployment workflows — e.g. moving a site to a new cPanel account, provisioning a database for a fresh app, or auditing DNS before a domain cutover.

## Notes on `Fileman`

Only `list_files` (backed by `Fileman::list_files`) and, through the `cpanel_uapi_call` escape hatch, `get_file_content` / `save_file_content` are known to work reliably for reading and writing individual files. Bulk filesystem operations (`extract_files`, `rename`, `mkdir`, `fileop`, `delete_files`, ...) are not guaranteed to be available depending on your cPanel version/provider — test before relying on them, and prefer cPanel's File Manager UI for bulk moves, extraction, and deletion.

## Security

- Never commit your `.env` file (it's git-ignored by default).
- Scope your cPanel API token as narrowly as your provider allows.
- The `cpanel_uapi_call` tool can call *any* UAPI function available to your account — treat it with the same care as direct API/token access.

## License

MIT
ai-toolsclaudecpanelhosting-automationmcpmcp-servermodel-context-protocol

Lo que la gente pregunta sobre obambu-cpanel-mcp

¿Qué es RodrigueDev13/obambu-cpanel-mcp?

+

RodrigueDev13/obambu-cpanel-mcp es mcp servers para el ecosistema de Claude AI. MCP server exposing cPanel UAPI (domains, DNS, email, MySQL, files) as tools for AI assistants Tiene 0 estrellas en GitHub y se actualizó por última vez today.

¿Cómo se instala obambu-cpanel-mcp?

+

Puedes instalar obambu-cpanel-mcp clonando el repositorio (https://github.com/RodrigueDev13/obambu-cpanel-mcp) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.

¿Es seguro usar RodrigueDev13/obambu-cpanel-mcp?

+

RodrigueDev13/obambu-cpanel-mcp aún no ha sido auditado por nuestro agente de seguridad. Revisa el repositorio original en GitHub antes de usarlo en producción.

¿Quién mantiene RodrigueDev13/obambu-cpanel-mcp?

+

RodrigueDev13/obambu-cpanel-mcp es mantenido por RodrigueDev13. La última actividad registrada en GitHub es de today, con 0 issues abiertos.

¿Hay alternativas a obambu-cpanel-mcp?

+

Sí. En ClaudeWave puedes explorar mcp servers similares en /categories/mcp, ordenados por popularidad o actividad reciente.

Despliega obambu-cpanel-mcp en tu cloud

Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.

¿Mantienes este repo? Añade un badge a tu README

Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.

Featured on ClaudeWave: RodrigueDev13/obambu-cpanel-mcp
[![Featured on ClaudeWave](https://claudewave.com/api/badge/rodriguedev13-obambu-cpanel-mcp)](https://claudewave.com/repo/rodriguedev13-obambu-cpanel-mcp)
<a href="https://claudewave.com/repo/rodriguedev13-obambu-cpanel-mcp"><img src="https://claudewave.com/api/badge/rodriguedev13-obambu-cpanel-mcp" alt="Featured on ClaudeWave: RodrigueDev13/obambu-cpanel-mcp" width="320" height="64" /></a>

Más MCP Servers

Alternativas a obambu-cpanel-mcp