MCP server for EasyPanel — manage your server, projects, services, databases, and domains through any MCP-compatible AI agent (Claude, Cursor, etc.).
40 curated tools + raw tRPC access to all 347 EasyPanel API procedures.
The easiest way — deploy the MCP server as a service on your own EasyPanel. Pick an auth mode:
- OAuth (recommended) — users sign in with their Easypanel email/password in a browser popup. No tokens to generate or paste. Per-user access.
- Bearer — one shared API key + one Easypanel token baked into env vars.
- Create a project (e.g.
mcp), add an App service from GitHubdray-supadev/easypanel-mcp - Add a domain (e.g.
mcp.your-domain.com) - Set environment variables:
EASYPANEL_URL=http://easypanel:3000 EASYPANEL_MCP_MODE=http EASYPANEL_AUTH_MODE=oauth OAUTH_ISSUER_URL=https://mcp.your-domain.com MCP_ACCESS_MODE=readonly PORT=3000 - (Optional but recommended) Mount a volume at
/dataand setOAUTH_STORE_PATH=/data/oauth.jsonso tokens survive redeploys. - Deploy.
Connect Claude Desktop or another OAuth-aware MCP client:
{
"mcpServers": {
"easypanel": { "url": "https://mcp.your-domain.com/mcp" }
}
}On first use the client will pop a browser window asking for your Easypanel credentials, then return you to Claude with an access token. No manual curl required.
The login page calls Easypanel's
auth.logininternally and binds the session token to an opaque OAuth access token scoped to this MCP server. Credentials are never stored.
-
Get your API token:
curl -X POST https://YOUR_PANEL:3000/api/trpc/auth.login \ -H "Content-Type: application/json" \ -d '{"json":{"email":"you@email.com","password":"your-pass"}}'
If you have 2FA enabled, add
"code":"123456"with your authenticator code.The response contains
"token":"xxx"— that's your API token.⚠️ This is a session token that expires in 30 days. For a permanent token, useusers.generateApiToken(see below). -
Deploy on EasyPanel:
EASYPANEL_URL=http://easypanel:3000 EASYPANEL_TOKEN=your-api-token EASYPANEL_MCP_MODE=http MCP_API_KEY=your-secret-key MCP_ACCESS_MODE=readonly PORT=3000Important: Use
http://easypanel:3000(internal Docker network) when deploying on the same EasyPanel instance.MCP_ACCESS_MODE:readonlyblocks all write operations; set tofullto allow mutations.⚠️ SetMCP_API_KEY— without it, anyone with the URL can control your server. Use alphanumeric only (!,%,^may break in env vars). -
Connect Claude Desktop:
{ "mcpServers": { "easypanel": { "url": "https://mcp.your-domain.com/mcp", "headers": { "Authorization": "Bearer your-secret-key" } } } }
Restart Claude Desktop. Done! Ask Claude to "show my projects" 🎉
Run the MCP server locally via stdio (no deployment needed):
git clone https://github.com/dray-supadev/easypanel-mcp.git
cd easypanel-mcp
npm install && npm run build{
"mcpServers": {
"easypanel": {
"command": "node",
"args": ["/path/to/easypanel-mcp/dist/index.js"],
"env": {
"EASYPANEL_URL": "https://your-panel:3000",
"EASYPANEL_TOKEN": "your-api-token"
}
}
}
}list_projects · create_project · destroy_project · inspect_project
create_app · inspect_app · deploy_app · start_app · stop_app · restart_app · destroy_app · set_app_source_image · set_app_source_github · set_app_env · set_app_resources
create_database · inspect_database · destroy_database
list_domains · create_domain · delete_domain · create_port · list_ports
create_mount · list_mounts
system_stats · service_stats · storage_stats
create_compose · inspect_compose · deploy_compose
cleanup_docker · system_prune · restart_panel · reboot_server · list_users · list_certificates · list_nodes · deploy_template
trpc_raw — call any of the 347 tRPC procedures directly
- OAuth mode — per-user access via browser sign-in; the MCP server acts as an OAuth 2.1 authorization server (PKCE required, dynamic client registration per RFC 7591). Access tokens are opaque and bound to the user's Easypanel session token server-side; credentials never leave this server in stored form.
- Bearer mode —
MCP_API_KEYprotects the endpoint,EASYPANEL_TOKENis used for all API calls. - Health endpoint (
/health) is always public (returns no sensitive data). - In local/stdio mode, no network auth is needed.
| Variable | Required | Description |
|---|---|---|
EASYPANEL_URL |
✅ | Your EasyPanel URL |
EASYPANEL_TOKEN |
Bearer/stdio | API token from login (not needed in OAuth mode) |
EASYPANEL_MCP_MODE |
For HTTP | stdio (default) or http |
EASYPANEL_AUTH_MODE |
No | bearer (default) or oauth |
MCP_API_KEY |
Bearer HTTP | Shared key protecting the endpoint |
OAUTH_ISSUER_URL |
OAuth | Public URL of this server (e.g. https://mcp.example.com) |
OAUTH_STORE_PATH |
No | Where to persist OAuth state (default ./.easypanel-mcp-oauth.json) |
MCP_ACCESS_MODE |
No | full (default) or readonly — blocks all mutations |
PORT |
No | HTTP port (default: 3100) |
When EASYPANEL_AUTH_MODE=oauth, the server exposes:
GET /.well-known/oauth-authorization-server— RFC 8414 metadataGET /.well-known/oauth-protected-resource— RFC 9728 metadataPOST /register— RFC 7591 dynamic client registrationGET /authorize— login pagePOST /authorize— credentials → authorization code (302 redirect to client)POST /token—authorization_codeandrefresh_tokengrants (S256 PKCE required)
Session tokens from auth.login expire in 30 days. For a permanent token:
Step 1. Get your user ID:
curl -s "https://YOUR_PANEL:3000/api/trpc/users.listUsers" \
-H "Authorization: Bearer YOUR_SESSION_TOKEN"Find your email in the response and copy the "id" field.
Step 2. Generate the permanent token:
curl -s -X POST "https://YOUR_PANEL:3000/api/trpc/users.generateApiToken" \
-H "Authorization: Bearer YOUR_SESSION_TOKEN" \
-H "Content-Type: application/json" \
-d '{"json":{"id":"YOUR_USER_ID"}}'Step 3. Retrieve the token — list users again:
curl -s "https://YOUR_PANEL:3000/api/trpc/users.listUsers" \
-H "Authorization: Bearer YOUR_SESSION_TOKEN"Your user now has an "apiToken" field — that's the permanent token. Set it as EASYPANEL_TOKEN in your MCP service env.
This token never expires unless you revoke it via
users.revokeApiToken.
EasyPanel exposes a tRPC API at /api/trpc/. This MCP server was built by reverse-engineering EasyPanel's frontend to extract all 347 procedure names across 43 namespaces, then mapping the most useful ones to typed MCP tools.
This tool communicates with EasyPanel's public tRPC API. Some EasyPanel features may require a valid license. Please respect EasyPanel's licensing terms. This project is not affiliated with or endorsed by EasyPanel.
MIT