Install
$ agentstack add mcp-opanel-mc-opanel-mcp ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ● Environment & secrets Used
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
OPanel MCP
OPanel MCP Server for AI agents
Description
opanel-mcp is a MCP server for OPanel. After connecting it to an AI agent, you can manage common Minecraft server tasks with simple prompts instead of manually clicking through the panel.
Usage
Prerequisites
- A running OPanel instance
- An enabled OPanel MCP token
- HTTPS access to your OPanel endpoint (required for non-local connections)
- Node.js 18+ and npm
Getting Started
- Follow the Official Docs to deploy OPanel.
- Set up HTTPS for your OPanel endpoint.
Configure HTTPS with a reverse proxy (for example Nginx/Caddy) or another TLS solution.
> [!IMPORTANT] > This MCP server only allows: > - https://... for remote hosts > - http://localhost or http://127.0.0.1 for local-only development > > If your server URL is remote and not HTTPS, connection will be rejected.
- In OPanel, open the MCP page, generate a new access token, and enable MCP.
- Install the MCP server.
Add the following config to your MCP client, and modify the arguments to match your setup:
{
"mcpServer": {
"opanel": {
"command": "npx",
"args": [
"opanel-mcp@latest",
"--server", "...",
"--token", "..."
]
}
}
}
Arguments:
--server: Your OPanel URL, such ashttps://example.com:3000--token: Your MCP Access Token generated in the MCP page
Development
You can run with MCP Inspector for local debugging:
npm run build
npm run dev
This command reads SERVER and TOKEN from .env.
Security Notes
- Treat the MCP token as a secret.
- Do not commit tokens into Git.
- Rotate the token in OPanel if you suspect leakage.
License
[MPL-2.0](./LICENSE)
Source & license
This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: opanel-mc
- Source: opanel-mc/opanel-mcp
- License: MPL-2.0
- Homepage: https://opanel.cn/docs/mcp
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.