MCP server exposing the Panelica hosting panel External API (198 endpoints, HMAC auth) to AI assistants like Claude Desktop, Cursor, and ChatGPT.
- ✓Open-source license (MIT)
- ✓Actively maintained (<30d)
- ✓Clear description
- ✓Topics declared
- ✓Documented (README)
- !Install pipes a remote script into a shell (curl | sh)
claude mcp add panelica-mcp -- npx -y panelica-mcp{
"mcpServers": {
"panelica-mcp": {
"command": "npx",
"args": ["-y", "panelica-mcp"],
"env": {
"PANELICA_SPEC_URL": "<panelica_spec_url>",
"PANELICA_BASE_URL": "<panelica_base_url>",
"PANELICA_API_KEY": "<panelica_api_key>",
"PANELICA_API_SECRET": "<panelica_api_secret>"
}
}
}
}PANELICA_SPEC_URLPANELICA_BASE_URLPANELICA_API_KEYPANELICA_API_SECRETMCP Servers overview
# Panelica MCP Server
> Talk to your [Panelica](https://panelica.com) hosting panel in plain English.
> Provision a domain, issue an SSL certificate, create a database, or restart a
> service through Claude Desktop, Cursor, ChatGPT, or any other
> [Model Context Protocol](https://modelcontextprotocol.io) client.
[](https://www.npmjs.com/package/panelica-mcp)
[](tools/tools.json)
[](#permission-scopes)
[](https://github.com/Panelica/panelica-mcp/pkgs/container/panelica-mcp)
[](#keeping-the-tool-catalogue-current)
[](LICENSE)
404 tools cover the entire External API surface — accounts, domains, DNS,
SSL, email, MySQL, FTP, security, backups, server resources, and more.
---
## Table of Contents
- [How it works](#how-it-works)
- [Requirements](#requirements)
- [Install](#install)
- [Option A — npm (recommended)](#option-a--npm-recommended)
- [Option B — Docker](#option-b--docker)
- [Option C — Build from source](#option-c--build-from-source)
- [Configuration](#configuration)
- [1. Open the External API port](#1-open-the-external-api-port)
- [2. Generate an API key in the panel](#2-generate-an-api-key-in-the-panel)
- [3. Verify the credentials with curl](#3-verify-the-credentials-with-curl)
- [Wire it into your MCP client](#wire-it-into-your-mcp-client)
- [Claude Code (one command)](#claude-code-one-command)
- [Claude Desktop](#claude-desktop)
- [Cursor](#cursor)
- [OpenAI Codex CLI](#openai-codex-cli)
- [Continue.dev, Cline, Zed](#continuedev-cline-zed)
- [Generic stdio client](#generic-stdio-client)
- [Tool catalogue](#tool-catalogue)
- [Example sessions](#example-sessions)
- [Permission scopes](#permission-scopes)
- [Security model](#security-model)
- [Troubleshooting](#troubleshooting)
- [Development](#development)
- [Versioning & support](#versioning--support)
- [License](#license)
---
## How it works
```
+----------------+ stdio JSON-RPC +-------------------+
| MCP client | <----------------------------> | panelica-mcp |
| (Claude, ...) | | (this package) |
+----------------+ +---------+---------+
|
HTTPS + HMAC-SHA256|
X-API-Key |
X-Timestamp |
X-Signature |
v
+------------------------------+------------------------------+
| https://<panel-host>:8443/api/external/v1/... |
| nginx reverse proxy on the panel host |
| (TLS termination + path rewrite: /api/external/X -> /X) |
+------------------------------+------------------------------+
|
127.0.0.1:3002 plain |
v
+----------------+-----------------+
| external-server (HMAC verify) |
+----------------+-----------------+
|
v
+----------------+-----------------+
| Panelica panel + Linux services |
+----------------------------------+
```
`panelica-mcp` is a thin, stateless adapter:
1. The MCP client launches the binary over stdio.
2. The client asks for the tool list — the server reads `tools/tools.json`
(404 entries, auto-generated from the panel's live API spec) and returns it.
3. When the client calls a tool, the server builds the corresponding HTTP
request, signs it with HMAC-SHA256 using your local `PANELICA_API_SECRET`,
and forwards it to the panel.
4. The HTTP response is returned to the client as the tool result.
No data is cached, no telemetry is emitted, and the secret never leaves the
machine running the MCP server.
## Requirements
- A running Panelica panel (version 1.0.193 or newer recommended; the External
API surface is stable from 1.0.180+).
- HTTPS access to the panel UI on port 8443 from the machine that will run
`panelica-mcp`. This is the same port you already use in the browser — no
extra firewall change is required.
- One of the following runtimes on that machine:
- **Node.js ≥ 20** for the npm install path
- **Docker** for the container path
You do **not** need to install anything on the panel host itself, and you do
**not** need to open the internal port 3002 to the public internet.
## Install
Pick whichever fits your MCP client setup. All three produce the same stdio
binary; pick by which sandbox model you prefer.
### Option A — npm (recommended)
```bash
npm install -g panelica-mcp
```
or run without installing (the MCP client launches `npx` for you):
```bash
npx -y panelica-mcp
```
The `-y` flag accepts npm's "install on first run" prompt non-interactively,
which is what MCP clients need.
### Option B — Docker
A pre-built image is published to GitHub Container Registry on every release:
```bash
docker pull ghcr.io/panelica/panelica-mcp:latest
```
Run it from an MCP client config:
```json
{
"command": "docker",
"args": [
"run", "--rm", "-i",
"-e", "PANELICA_BASE_URL",
"-e", "PANELICA_API_KEY",
"-e", "PANELICA_API_SECRET",
"ghcr.io/panelica/panelica-mcp:latest"
],
"env": {
"PANELICA_BASE_URL": "https://your-panel-host:8443/api/external",
"PANELICA_API_KEY": "pk_...",
"PANELICA_API_SECRET": "sk_..."
}
}
```
`-i` keeps stdin attached so the MCP client can talk to the container.
`--rm` removes the container when the client disconnects.
### Option C — Build from source
```bash
git clone https://github.com/Panelica/panelica-mcp.git
cd panelica-mcp
npm install
npm run build
node dist/index.js # speaks MCP over stdio
```
To regenerate `tools/tools.json` from your panel's live API spec:
```bash
PANELICA_SPEC_URL="https://your-panel:8443/api/external/v1/api-spec" npm run rebuild-tools
```
## Configuration
You need three values: a reachable base URL, an API key, and an API secret.
### 1. Pick the right base URL
Panelica's `external-server` process listens on `127.0.0.1:3002`, and the
panel's nginx on **8443** reverse-proxies `/api/external/...` to it. Nginx
strips the `/api/external` prefix before forwarding, so the path the HMAC
signature is computed over and the path the backend sees both end up as
`/v1/...` — signatures match end-to-end without any extra knobs.
The right `PANELICA_BASE_URL` depends on where you run `panelica-mcp`:
| Scenario | Recommended `PANELICA_BASE_URL` |
|---|---|
| MCP client on your laptop, panel on a remote server | `https://<panel-host>:8443/api/external` |
| MCP client and panel on the **same** machine | `http://127.0.0.1:3002` |
You should **not** open port 3002 to the public internet. The default install
binds it on all interfaces but expects it to be either firewalled or only
reached through the 8443 reverse proxy.
Sanity-check the proxy from your machine:
```bash
curl -sk https://<panel-host>:8443/api/external/health
# {"status":"ok"} or similar
```
If you get a TLS error, that is the panel's self-signed certificate — install
a real cert on the panel (panel UI → Settings → SSL) rather than disabling
verification client-side.
### 2. Generate an API key in the panel
1. Sign in to the panel as **root** or any account with permission to manage
API keys.
2. Navigate to **Settings → API Keys → Generate API Key**.
3. Pick the scopes you want the MCP server to have. For a read-only assistant,
`*:read` is enough. For full automation, grant `*:write` too. Every tool's
`description` in this server lists the scopes it requires.
4. Copy both **key** (looks like `pk_...`) and **secret** (looks like `sk_...`).
The secret is shown **only once**; store it in a password manager.
### 3. Verify the credentials with curl
Before you wire the MCP client up, prove the credentials work end-to-end:
```bash
export PANELICA_BASE_URL=https://your-panel-host:8443/api/external
export PANELICA_API_KEY=pk_xxxxxxxx
export PANELICA_API_SECRET=sk_xxxxxxxx
TS=$(date +%s)
# Signature is over METHOD + PATH + TIMESTAMP + BODY. The path is the
# backend-visible path (/v1/...) — NOT the /api/external/ prefix that nginx
# strips before forwarding. panelica-mcp does this automatically.
SIG=$(printf "GET/v1/api-keys${TS}" \
| openssl dgst -sha256 -hmac "$PANELICA_API_SECRET" -hex | awk '{print $2}')
curl -sk "$PANELICA_BASE_URL/v1/api-keys" \
-H "X-API-Key: $PANELICA_API_KEY" \
-H "X-Timestamp: $TS" \
-H "X-Signature: $SIG"
```
You should get back JSON listing your API keys. Common 401 responses:
| `error.code` | Likely cause |
|---|---|
| `MISSING_API_KEY` / `MISSING_TIMESTAMP` / `MISSING_SIGNATURE` | Header is empty — re-check the curl flags |
| `INVALID_KEY_FORMAT` | The `PANELICA_API_KEY` value is malformed |
| `INVALID_TIMESTAMP` | Local clock drifted more than 5 minutes — sync NTP |
| `INVALID_SIGNATURE` | Wrong secretWhat people ask about panelica-mcp
What is Panelica/panelica-mcp?
+
Panelica/panelica-mcp is mcp servers for the Claude AI ecosystem. MCP server exposing the Panelica hosting panel External API (198 endpoints, HMAC auth) to AI assistants like Claude Desktop, Cursor, and ChatGPT. It has 1 GitHub stars and its last recorded update is dated 2026-08-26.
How do I install panelica-mcp?
+
You can install panelica-mcp by cloning the repository (https://github.com/Panelica/panelica-mcp) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.
Is Panelica/panelica-mcp safe to use?
+
Our security agent has analyzed Panelica/panelica-mcp and assigned a Trust Score of 87/100 (tier: Trusted). See the full breakdown of passed checks and flags on this page.
Who maintains Panelica/panelica-mcp?
+
Panelica/panelica-mcp is maintained by Panelica. The last recorded GitHub activity is dated 2026-08-26, with 0 open issues.
Are there alternatives to panelica-mcp?
+
Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.
Deploy panelica-mcp to your cloud
Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.
Maintain this repo? Add a badge to your README
Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.
[](https://claudewave.com/repo/panelica-panelica-mcp)<a href="https://claudewave.com/repo/panelica-panelica-mcp"><img src="https://claudewave.com/api/badge/panelica-panelica-mcp" alt="Featured on ClaudeWave: Panelica/panelica-mcp" width="320" height="64" /></a>More MCP Servers
Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.
User-friendly AI Interface (Supports Ollama, OpenAI API, ...)
An open-source AI agent that brings the power of Gemini directly into your terminal.
Real-time global intelligence dashboard. AI-powered news aggregation, geopolitical monitoring, and infrastructure tracking in a unified situational awareness interface
The fastest path to AI-powered full stack observability, even for lean teams.
🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl!