CELERITY面板 是 AI Skill Hub 本期精选MCP工具之一。综合评分 8.0 分,整体质量较高。我们强烈推荐将其纳入你的 AI 工具库,帮助提升工作效率。
CELERITY面板 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
CELERITY面板 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
# 方式一:通过 Claude Code CLI 一键安装
claude skill install https://github.com/ClickDevTech/CELERITY-panel
# 方式二:手动配置 claude_desktop_config.json
{
"mcpServers": {
"celerity--": {
"command": "npx",
"args": ["-y", "celerity-panel"]
}
}
}
# 配置文件位置
# macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
# Windows: %APPDATA%/Claude/claude_desktop_config.json
# 安装后在 Claude 对话中直接使用 # 示例: 用户: 请帮我用 CELERITY面板 执行以下任务... Claude: [自动调用 CELERITY面板 MCP 工具处理请求] # 查看可用工具列表 # 在 Claude 中输入:"列出所有可用的 MCP 工具"
// claude_desktop_config.json 配置示例
{
"mcpServers": {
"celerity__": {
"command": "npx",
"args": ["-y", "celerity-panel"],
"env": {
// "API_KEY": "your-api-key-here"
}
}
}
}
// 保存后重启 Claude Desktop 生效
⚡ Fast. Simple. Long-lasting.
C³ CELERITY by Click Connect — modern web panel for managing Hysteria 2 and Xray VLESS proxy servers with centralized authentication, one-click node setup, and flexible user-to-server group mapping.
Built for performance: Lightweight architecture designed for speed at any scale.
<p align="center"> <img src="docs/dashboard.png" alt="C³ CELERITY Dashboard" width="800"> <br> <em>Dashboard — real-time server monitoring and statistics</em> </p>
---
curl -O https://raw.githubusercontent.com/ClickDevTech/hysteria-panel/main/docker-compose.hub.yml curl -O https://raw.githubusercontent.com/ClickDevTech/hysteria-panel/main/docker.env.example
mkdir -p greenlock.d curl -o greenlock.d/config.json https://raw.githubusercontent.com/ClickDevTech/hysteria-panel/main/greenlock.d/config.json
cp docker.env.example .env nano .env # Set your domain, email, and secrets docker compose -f docker-compose.hub.yml up -d
**Alternative: Build from source** (for development or customization)bash git clone https://github.com/ClickDevTech/hysteria-panel.git cd hysteria-panel cp docker.env.example .env nano .env # Set your domain, email, and secrets docker compose up -d
**3. Open** `https://your-domain/panel`
> Planning to manage the panel from AI assistants? See [MCP Setup Guide](docs/mcp-user-guide.md).
**Local development (HTTP only, no domain/SSL):**
Want to try the panel on your laptop without a public domain or certificate? Use the local compose file — it sets `USE_CADDY=true` (plain HTTP, no Greenlock/ACME) and publishes port `3000` directly, with dev defaults so it boots without a `.env`:bash git clone https://github.com/ClickDevTech/hysteria-panel.git cd hysteria-panel docker compose -f docker-compose.local.yml up -d
1. In Dokploy, create a project from this repository/branch. 2. Set compose path to docker-compose.dokploy.yml. 3. Add env vars from docker.env.example and set at least: - MONGO_PASSWORD - PANEL_DOMAIN - ACME_EMAIL - ENCRYPTION_KEY - SESSION_SECRET - DOKPLOY_PANEL_HOST (domain used in Traefik Host(...) rule) - DOKPLOY_TRAEFIK_SERVICE_PORT (Traefik target/backend port, default 3000) 4. Deploy: Dokploy will run build: . and start the stack.
This mode is best when you test branch changes before publishing a release image.
If you want stable deploys from Docker Hub tags (without building), replace backend image source in Dokploy compose with:
backend:
image: clickdevtech/hysteria-panel:latest
# or pin a release tag, e.g. clickdevtech/hysteria-panel:v1.2.3
restart: always
depends_on:
mongo:
condition: service_healthy
redis:
condition: service_healthy
expose:
- "${DOKPLOY_TRAEFIK_SERVICE_PORT:-3000}"
labels:
- "traefik.enable=true"
- "traefik.http.routers.celerity.rule=Host(`${DOKPLOY_PANEL_HOST}`)"
- "traefik.http.routers.celerity.entrypoints=websecure"
- "traefik.http.routers.celerity.tls=true"
- "traefik.http.services.celerity.loadbalancer.server.port=${DOKPLOY_TRAEFIK_SERVICE_PORT:-3000}"
env_file:
- .env
Use latest for fast updates, or pin an explicit tag for predictable production rollouts.
---
1. Add node in panel: - Type: Xray - IP, SSH credentials - Security: Reality (recommended) - Transport: TCP (recommended for Reality)
3. Panel will automatically: - Install Xray-core - Generate Reality keys (x25519) - Upload config - Install CC Agent for user management - Open firewall ports - Start services
1. Add node in panel (IP, SSH credentials) 2. Click "⚙️ Auto Setup" 3. Panel will automatically: - Install Hysteria 2 - Configure ACME or self-signed certificates - Set up port hopping - Open firewall ports - Start service
You can run panel and node on the same VPS (panel TCP, node UDP on 443).
Option 1: Use panel domain (recommended) - Set node domain same as panel domain - Panel certificates will be copied automatically
Option 2: No domain (self-signed) - Leave domain field empty - Self-signed certificate will be generated
---
version: '3.8'
services:
mongo:
image: mongo:7
restart: always
volumes:
- mongo_data:/data/db
environment:
MONGO_INITDB_ROOT_USERNAME: ${MONGO_USER:-hysteria}
MONGO_INITDB_ROOT_PASSWORD: ${MONGO_PASSWORD}
backend:
image: clickdevtech/hysteria-panel:latest
restart: always
depends_on:
- mongo
ports:
- "80:80"
- "443:443"
volumes:
- ./logs:/app/logs
- ./greenlock.d:/app/greenlock.d
- ./backups:/app/backups
env_file:
- .env
volumes:
mongo_data:
---
Updating an existing installation? See Safe Production Updates.
1. Install Docker (if not installed):
curl -fsSL https://get.docker.com | sh
2. Deploy panel (Docker Hub - recommended): ```bash mkdir hysteria-panel && cd hysteria-panel
reject(suffix:doubleclick.net) # Block ads
reject(suffix:googlesyndication.com)
reject(geoip:cn) # Block Chinese IPs
reject(geoip:private) # Block private IPs
direct(all) # Allow everything else
| Field | Description | Example |
|---|---|---|
| Dest | Disguise destination (domain:port) | www.google.com:443 |
| SNI | Server Name Indication | www.google.com |
| Private Key | x25519 private key | Auto-generated |
| Public Key | Public key (for clients) | Auto-generated |
| Short IDs | Session identifiers | Auto-generated |
#### Ports - Main port (443) — Port Hysteria listens on - Port hopping range (20000-50000) — UDP ports for hopping - Stats port (9999) — Internal port for stats collection
| Field | Purpose | Example |
|---|---|---|
| **Domain** | For ACME/Let's Encrypt certificates | de1.example.com → 1.2.3.4 |
| **SNI** | For masquerading (domain fronting) | www.google.com |
Scenarios: 1. Simple setup: Set domain, leave SNI empty 2. Domain fronting: Set domain for certs, SNI as popular domain 3. No domain: Leave empty — self-signed certificate will be used
X-API-Key: ck_your_key_here
Authorization: Bearer ck_your_key_here ```
| Scope | Access |
|---|---|
users:read | Read users |
users:write | Create / update / delete users |
nodes:read | Read nodes |
nodes:write | Create / update / delete / sync nodes |
stats:read | Read stats and groups |
sync:write | Trigger sync, kick users |
Each key has a configurable rate limit (default: 60 req/min). Exceeded requests return 429 with X-RateLimit-Limit / X-RateLimit-Remaining headers.
---
| Variable | Required | Description |
|---|---|---|
PANEL_DOMAIN | ✅ | Panel domain |
DOKPLOY_PANEL_HOST | ❌ | Traefik host for Dokploy (Host(...) rule) |
DOKPLOY_TRAEFIK_SERVICE_PORT | ❌ | Traefik/backend service port in Dokploy (default: 3000) |
ACME_EMAIL | ✅ | Let's Encrypt email |
ENCRYPTION_KEY | ✅ | SSH encryption key (32 chars) |
SESSION_SECRET | ✅ | Session secret |
MONGO_PASSWORD | ✅ | MongoDB password (for Docker) |
MONGO_USER | ❌ | MongoDB user (default: hysteria) |
MONGO_URI | ❌ | MongoDB connection URI (for non-Docker) |
REDIS_URL | ❌ | Redis URL for cache (default: in-memory) |
USE_CADDY | ❌ | Serve plain HTTP on PORT behind a reverse proxy instead of Greenlock HTTPS. Used by docker-compose.yml/docker-compose.dokploy.yml. Unset = standalone HTTPS via Greenlock (needs a real domain + public ports 80/443) |
PORT | ❌ | Backend HTTP port when USE_CADDY=true (default: 3000) |
PANEL_IP_WHITELIST | ❌ | IP whitelist for panel |
SYNC_INTERVAL | ❌ | Sync interval in minutes (default: 2) |
API_DOCS_ENABLED | ❌ | Enable interactive API docs at /api/docs |
LOG_LEVEL | ❌ | Logging level (default: info) |
---
All /api/* endpoints (except /api/auth and /api/files) require authentication.
Create a key: Settings → Security → API Keys → Create Key
Usage: ```http
高质量的MCP工具,支持多种代理服务器
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ MIT 协议 — 最宽松的开源协议之一,可自由商用、修改、分发,仅需保留版权声明。
经综合评估,CELERITY面板 在MCP工具赛道中表现稳健,质量优秀。如果你已有明确的使用需求,可以直接上手体验;如果还在评估阶段,建议对比同类工具后再做决策。
| 原始名称 | CELERITY-panel |
| Topics | hysteriaxrayvlessmcpdocker |
| GitHub | https://github.com/ClickDevTech/CELERITY-panel |
| License | MIT |
| 语言 | JavaScript |
收录时间:2026-06-07 · 更新时间:2026-06-07 · License:MIT · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端