Skip to content
VS Code

Obambu cPanel MCP for VS Code

io.github.rodriguedev13/obambu-cpanel-mcp

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

client:VS Code transport:stdio runtime:npm

Install Obambu cPanel MCP in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "cpanel-host",
      "description": "CPANEL_HOST",
      "password": true
    },
    {
      "type": "promptString",
      "id": "cpanel-port",
      "description": "CPANEL_PORT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "cpanel-username",
      "description": "CPANEL_USERNAME",
      "password": true
    },
    {
      "type": "promptString",
      "id": "cpanel-api-token",
      "description": "CPANEL_API_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "obambu-cpanel-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "obambu-cpanel-mcp"
      ],
      "env": {
        "CPANEL_HOST": "${input:cpanel-host}",
        "CPANEL_PORT": "${input:cpanel-port}",
        "CPANEL_USERNAME": "${input:cpanel-username}",
        "CPANEL_API_TOKEN": "${input:cpanel-api-token}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

Obambu cPanel MCP in other clients