Skip to content
VS Code

WHMCS MCP Server for VS Code

io.github.daddariotech/whmcs-mcp

Connect Claude, ChatGPT, and Cursor to live WHMCS over MCP.

client:VS Code transport:stdio runtime:oci

Install WHMCS MCP Server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "mcp-transport",
      "description": "MCP_TRANSPORT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "whmcs-api-url",
      "description": "WHMCS_API_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "whmcs-identifier",
      "description": "WHMCS_IDENTIFIER",
      "password": true
    },
    {
      "type": "promptString",
      "id": "whmcs-secret",
      "description": "WHMCS_SECRET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "license-key",
      "description": "LICENSE_KEY",
      "password": true
    }
  ],
  "servers": {
    "whmcs-mcp": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "docker.io/daddariotech/whmcs-mcp:latest"
      ],
      "env": {
        "MCP_TRANSPORT": "${input:mcp-transport}",
        "WHMCS_API_URL": "${input:whmcs-api-url}",
        "WHMCS_IDENTIFIER": "${input:whmcs-identifier}",
        "WHMCS_SECRET": "${input:whmcs-secret}",
        "LICENSE_KEY": "${input:license-key}"
      }
    }
  }
}

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

WHMCS MCP Server in other clients