The Minecraft MCP Server is a powerful integration that allows AI assistants, such as Claude, to control a Minecraft character in real-time. Powered by the Mineflayer API, this server enables AI to build structures, explore the world, and interact with the game environment using natural language instructions. It leverages the Model Context Protocol (MCP) to facilitate seamless communication between AI models and the Minecraft game.
Before getting started, ensure you have the following:
- Node.js installed
- A running instance of Minecraft (tested with Minecraft 1.21.4 Java Edition)
- Claude Desktop installed
ESC -> Open to LAN
).25565
and hostname localhost
.File -> Settings -> Developer -> Edit Config
.claude_desktop_config.json
file and insert the following configuration:{
"mcpServers": {
"minecraft": {
"command": "npx",
"args": [
"-y",
"github:yuniko-software/minecraft-mcp-server",
"--host",
"localhost",
"--port",
"25565",
"--username",
"ClaudeBot"
]
}
}
}
--port
and --host
parameters match your Minecraft setup.Once connected, Claude can execute the following commands in Minecraft:
get-position
- Get the bot's current position.move-to-position
- Move to specific coordinates.look-at
- Make the bot look at specific coordinates.jump
- Make the bot jump.move-in-direction
- Move in a specific direction for a duration.list-inventory
- List all items in the bot's inventory.find-item
- Find a specific item in the inventory.equip-item
- Equip a specific item.place-block
- Place a block at specified coordinates.dig-block
- Dig a block at specified coordinates.get-block-info
- Get information about a block.find-block
- Find the nearest block of a specific type.find-entity
- Find the nearest entity of a specific type.send-chat
- Send a chat message in-game.This project is open to contributions! Areas for improvement include:
- Additional documentation
- Robust error handling
- Tests for different components
- New functionality and commands
Feel free to submit pull requests or open issues for enhancements.
This project was developed by Yuniko Software and is licensed under the Apache-2.0 License. For more information, visit yuniko.software/mcp-server/.