minecraft-admin-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@minecraft-admin-mcpAdd Notch to the whitelist"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
minecraft-admin-mcp
minecraft-admin-mcp is a lightweight, self-hosted MCP server that gives an MCP-compatible agent a
small set of administration tools for exactly one Minecraft Java Edition server. It uses standard
Streamable HTTP and has no dependency on a particular agent or client.
The current development branch implements the V0.2 scope from PROJECT_SPEC.md.
Security model
This service is intentionally not a general remote administration interface:
One MCP process is configured for one Minecraft server; tools never accept a
server_id.It exposes no shell, code execution, arbitrary RCON, Docker API, or arbitrary filesystem tools.
RCON operations are fixed adapter methods and all player names and text are validated.
Disabled or approval-gated operations are absent from the V0.1 tool list. V0.1 does not execute approval-gated high-risk operations.
Every write operation, including rejected attempts, is recorded in the instance-local SQLite audit database. Known secret fields are redacted.
Each instance has its own bearer token and RCON password, read only from environment variables.
The default container runs as non-root UID 1000 with a read-only root filesystem, all Linux capabilities dropped, and no Docker socket. UID 1000 matches the default owner used by the recommended Minecraft image so private world files remain readable through the read-only mount.
Player names, chat, server output, books, signs, and mod text remain untrusted input. Bearer tokens protect access but do not encrypt traffic; use HTTPS at a reverse proxy, Tailscale, or another trusted private network in production.
Related MCP server: MCP Discord
Tools
Tool | Operation | Default example permission |
| Describe this one configured server | allow |
| Check RCON and online-player status | allow |
| List online players | allow |
| List whitelisted players | allow |
| Send a validated announcement | allow |
| Add a validated player name | allow |
| Remove a validated player name | allow |
| Kick a player with a validated reason | allow |
| Run the fixed | allow |
| Return reliable visible metrics and null for unavailable values | allow |
| Parse recent events from the configured fixed log | allow |
| Parse recent failures from the configured fixed log | allow |
| Create a consistent Zstandard world backup | allow |
| List backup ID, time, size, SHA-256, and reason | allow |
There is deliberately no raw command tool. Restart, ban, restore, OP, and arbitrary file access remain outside V0.2.
Docker Compose deployment
Requirements: Docker Engine with Compose v2 and enough memory for Minecraft.
cp .env.example .env
# Replace both values in .env with independent random secrets.
docker compose config
docker compose up -d --build
docker compose psThe MCP endpoint is http://127.0.0.1:8101/mcp. Minecraft gameplay is published on port 25565. The
RCON port has no host mapping; the MCP container reaches it as minecraft:25575 on
minecraft_internal.
The default stack mounts:
minecraft_dataat/datain Minecraft and read-only at/minecraftin MCP;minecraft_backupsat writable/backupsonly in MCP;minecraft_mcp_dataat/var/lib/minecraft-admin-mcpfor the SQLite audit database;config/survival.example.yamlread-only as the MCP configuration.
Use a copied configuration file for a real deployment instead of editing the example. Host ports can
be changed with MC_GAME_PORT and MC_MCP_PORT. Pin the Minecraft image tag and server version
according to your own upgrade policy.
Multiple isolated servers
Run a separate Compose project for each Minecraft server. Give each project a different config, host port, project name, bearer token, and RCON password:
docker compose --project-name mc-survival --env-file .env.survival up -d
MC_MCP_PORT=8102 MC_ADMIN_CONFIG_FILE=./config/test.example.yaml \
docker compose --project-name mc-test --env-file .env.test up -dDo not attach the stacks to a shared network. Each MCP still uses the internal DNS name minecraft,
but Docker project scoping resolves it only inside its own network. Stopping one project does not
stop or address another project's services or volumes.
Configuration
Set MC_ADMIN_CONFIG to a YAML file. config/config.example.yaml documents all V0.1 fields.
Secrets are references, never YAML values:
rcon:
host: minecraft
password_env: MC_RCON_PASSWORD
http:
path: /mcp
token_env: MC_MCP_TOKENPermission values are allow, approval, or disabled:
allow: register the directly executable tool;approval: do not register a direct tool in V0.1 (approval queues arrive in V0.3);disabled: do not register the tool.
The bearer token must be at least 32 characters. Send it only in the header:
Authorization: Bearer <instance-specific-token>Tokens in URL query parameters are not supported.
Logs, metrics, and backups
The log tools only read minecraft.log_file; callers cannot provide a path. Recognized player chat
is returned with trusted: false and source: player_chat. All log-derived content is untrusted,
control characters are sanitized, and IP addresses are redacted by default.
The standard Compose deployment does not share the Minecraft PID namespace with MCP. CPU and memory
therefore return null instead of reporting the wrong process. Data-volume free space is reported;
TPS and MSPT remain null in V0.2.
Backups cover only configured minecraft.world_directories. Creation acquires an instance-wide
lock, disables saving, flushes the worlds, writes a .tar.zst archive, calculates SHA-256, writes
metadata, restores saving in a finally path, and enforces retention_count. Tool results never
expose a filesystem path. V0.2 intentionally provides no restore operation; copy and verify backups
through a trusted operator-controlled recovery process.
MCP clients
Connection examples are in examples/clients/ for Codex, Claude Desktop, Cursor, Hermes, and a
generic MCP client. All use:
Transport: Streamable HTTP
URL:
https://your-host.example/mcpAuthentication:
Authorization: Bearer ...
Client configuration formats change over time; verify the example against the installed client version. Client-specific behavior is never imported into the MCP server.
Direct development
Python 3.12+ and uv are required.
uv sync --frozen
cp config/survival.example.yaml config/config.yaml
export MC_ADMIN_CONFIG=config/config.yaml
export MC_RCON_PASSWORD='development-rcon-secret'
export MC_MCP_TOKEN='development-token-at-least-32-characters'
uv run minecraft-admin-mcpQuality gates:
uv run ruff check .
uv run ruff format --check .
uv run mypy src
uv run pytestAudit and errors
Writes are stored in audit_events with timestamp, server ID, tool, redacted arguments, outcome,
stable error code, and duration. The service never intentionally stores authorization headers,
tokens, or RCON passwords and masks internal exception details at the MCP boundary.
See SECURITY.md for reporting and production guidance and CONTRIBUTING.md for development rules.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityFmaintenanceAn MCP server that enables programmatic management and monitoring of development servers through a unified interface and interactive TUI. It provides tools for process control, log streaming, and experimental browser automation via Playwright.Last updated1MIT
- Alicense-qualityBmaintenanceThe most complete open-source MCP server for Discord — 80+ tools, dual-mode: integrated (plugin) or standaloneLast updated279MIT
- AlicenseBqualityDmaintenanceAn MCP server for managing and operating Minecraft servers through multiple backend protocols including MCSManager API, RCON, and MSMP. It provides tools for instance lifecycle management, file operations, console commands, player administration, and server configuration with built-in security controls.Last updated712MIT
- AlicenseAqualityBmaintenanceSecurity-hardened MCP server that runs only allowlisted commands with no shell, jailed to a single directory, and bounded execution.Last updated2MIT
Related MCP Connectors
A MCP server built for developers enabling Git based project management with project and personal…
MCP server for Blockscout
An MCP server that let you interact with Cycloid.io Internal Development Portal and Platform
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/chius-me/minecraft-admin-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server