Minecraft Command Execution MCP Server
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 Command Execution MCP Servergive me 64 diamonds"
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 Command Execution MCP Server
An MCP (Model Context Protocol) server that enables Claude to execute Minecraft commands and get tab completions through the MasterControl API.
Features
This MCP server provides two tools:
1. execute_command
Execute any Minecraft command remotely as the authenticated player.
Player must be online and on a server
Player receives in-game notification when commands are executed
Returns command output or error messages
To get help: Append "help" to any command (e.g., "island help", "island upgrade help")
Examples:
execute_command("gamemode creative")
execute_command("island help") # Shows island command help
execute_command("island upgrade help") # Shows upgrade subcommand help
execute_command("island upgrade speed 5")2. tab_complete
Get tab completion suggestions for partial commands.
Discover available commands and subcommands
Find valid arguments and parameters
Works exactly like pressing Tab in Minecraft
Examples:
tab_complete("gamemode ") # Returns: survival, creative, adventure, spectator
tab_complete("island ") # Returns: available island subcommandsRelated MCP server: MCP Minecraft Remote
Prerequisites
Python 3.10 or higher
uvpackage manager (install here)A running MasterControl server with the command API
Valid API key for your Minecraft player
Installation
Clone the repo:
git clone https://github.com/<your-user>/minecraft-mcp-server.git cd minecraft-mcp-serverInstall dependencies:
uv syncConfigure environment variables:
cp .env.example .envEdit
.envwith your settings:# Required: Your Midnight API key MIDNIGHT_API_KEY=your-api-key-here # Optional: MasterControl API URL (defaults to localhost:8080) MIDNIGHT_API_URL=http://your-server:8080/api/v2
Usage
Testing Locally
Run the server directly to test:
uv run server.pyIt will wait for stdio input — that's expected for an MCP server. Ctrl+C to exit.
Integrating with Claude Code
Add the server to Claude Code (use the absolute path to your cloned repo):
claude mcp add midnight \
--transport stdio \
--env MIDNIGHT_API_KEY=your-key-here \
--env MIDNIGHT_API_URL=http://localhost:8080/api/v2 \
-- uv --directory /absolute/path/to/minecraft-mcp-server run server.pyVerify Installation
In Claude Code, check that the server is running:
/mcpYou should see midnight listed with status ✓ Connected.
Example Conversations
Execute Commands:
You: "Change my gamemode to creative"
Claude: [Uses execute_command("gamemode creative")]
✓ Command executed successfullyGet Command Help:
You: "How do I use the island upgrade command?"
Claude: [Uses execute_command("island upgrade help")]
Shows the help output for island upgradeExplore Commands:
You: "What island commands are available?"
Claude: [Uses tab_complete("island ")]
Lists: upgrade, create, delete, invite, members...Configuration
Environment Variables
Variable | Required | Default | Description |
| Yes | - | Your player's API key |
| No |
| MasterControl API base URL |
API Endpoints
POST /api/v2/command/execute— Execute commandsPOST /api/v2/command/tabComplete— Get tab completions
Troubleshooting
"MIDNIGHT_API_KEY environment variable not set!"
Create a .env file:
echo "MIDNIGHT_API_KEY=your-key-here" > .env"Failed to execute command"
Check that:
MasterControl API is running
API key is correct
Player is online and on a server (not in proxy limbo)
Security
Never commit
.env— it contains your API key (already excluded via.gitignore)Commands execute with your player's permissions
The AI can run any command you can run in-game
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
Related MCP Servers
- Alicense-qualityDmaintenanceEnables management of Minecraft servers through the MCSManager API. Supports executing server commands, checking player status, retrieving server information, and controlling game settings like weather.Last updated131MIT
- Alicense-qualityDmaintenanceEnables AI assistants to remotely control a Minecraft player, including navigation, mining, building, and interaction with the world and other players.Last updatedMIT
- Flicense-qualityBmaintenanceEnables natural language control of a Minecraft bot, allowing it to execute tasks like mining, exploring, and item management via AI-powered commands.Last updated1
- AlicenseAqualityBmaintenanceExposes Minecraft server commands via RCON as a tool, and optionally powers an in-game AI chat listener that answers player questions using Claude.Last updated2MIT
Related MCP Connectors
Hosted MCP server connecting claude.ai, ChatGPT and other AI apps to your own computer
Augments MCP Server - A comprehensive framework documentation provider for Claude Code
Search your AI chat history (ChatGPT, Claude, Codex) from any MCP client. Remote, private, read-only
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/mattlack15/midnightsky-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server