Minecraft Bedrock Education MCP
Enables controlling Minecraft Bedrock and Education Edition through natural language commands via WebSocket connection. Provides tools for player actions, world manipulation, building structures, camera control, and wiki integration for automated gameplay and educational scenarios.
README
Minecraft Bedrock MCP Server
日本語 README はこちら / Japanese README here
A TypeScript MCP server for controlling Minecraft Bedrock Edition and Education Edition.
<a href="https://glama.ai/mcp/servers/@Mming-Lab/minecraft-bedrock-mcp-server"> <img width="380" height="200" src="https://glama.ai/mcp/servers/@Mming-Lab/minecraft-bedrock-mcp-server/badge" alt="Minecraft Bedrock Education MCP server" /> </a>
Features
- Reliable Integration: Stable Minecraft control via WebSocket
- Hierarchical Tools: Core tools (blocks, player, world) + Advanced building tools
- MCP Compatible: Works with Claude Desktop and other MCP clients
- Type-safe: Full TypeScript implementation
Quick Start
1. Installation
git clone https://github.com/Mming-Lab/minecraft-bedrock-education-mcp.git
cd minecraft-bedrock-education-mcp
npm install
npm run build
npm start
2. Minecraft Setup
- Create world with cheats enabled (Bedrock/Education Edition)
- Connect from Minecraft:
/connect localhost:8001/ws
3. Claude Desktop Setup
Add to claude_desktop_config.json:
{
"mcpServers": {
"minecraft-bedrock": {
"command": "node",
"args": ["path/to/dist/server.js"]
}
}
}
Features
- Core Tools:
player,agent,world,blocks,camera,system,minecraft_wiki - Building Tools:
build_cube,build_sphere,build_cylinder,build_line, etc. - Wiki Integration: Search Minecraft Wiki for Bedrock/Education Edition info
- Sequence Control: Chain multiple tools with timing and error handling
- Cross-Tool Sequences: Combine different tools in automated workflows
Usage Examples
Wiki Search
// Step-by-step wiki search to avoid overwhelming responses
{
"action": "sequence",
"steps": [
{"type": "search", "query": "give command", "focus": "commands"},
{"type": "get_page_summary", "title": "Commands/give"},
{"type": "get_section", "title": "Commands/give", "section": "Syntax"}
]
}
Building Sequence
{
"steps": [
{"tool": "player", "type": "teleport", "x": 0, "y": 70, "z": 0},
{"tool": "build_cube", "type": "build", "x1": -5, "y1": 70, "z1": -5, "x2": 5, "y2": 75, "z2": 5, "material": "diamond_block"},
{"tool": "camera", "type": "move_to", "x": 10, "y": 80, "z": 10, "look_at_x": 0, "look_at_y": 72, "look_at_z": 0}
]
}
Development
npm run build # Compile TypeScript
npm run dev # Build and run
npm test # Run test client
Port Configuration
{
"args": ["path/to/dist/server.js", "--port=8002"]
}
Tools
Core Tools
player- Teleport, give items, gamemode, XPagent- Move, build, mine, inventory managementworld- Time, weather, run commandsblocks- Place/fill blocks, query terraincamera- Cinematic shots, smooth movementsystem- Scoreboards, titles, action barsminecraft_wiki- Search wiki for Bedrock/Education infosequence- Chain multiple tools together
Building Tools
build_cube,build_sphere,build_cylinder- Basic shapesbuild_line,build_helix,build_torus- Complex geometrybuild_ellipsoid,build_paraboloid,build_hyperboloid- Advanced shapesbuild_bezier- Smooth Bezier curves (bridges, arches, decorative paths) 🆕build_rotate,build_transform- Copy and transform structures
Multilingual Support (i18n)
Error messages support English and Japanese:
# Start with Japanese
npm start -- --lang=ja
# Start with English
npm start -- --lang=en
# Auto-detect (system language)
npm start
Claude Desktop configuration:
{
"mcpServers": {
"minecraft-bedrock-education": {
"args": ["path/to/dist/server.js", "--lang=ja"]
}
}
}
Requirements
- Node.js 16+
- Minecraft Bedrock/Education Edition with cheats
- MCP client (Claude Desktop, etc.)
License
GPL-3.0
Acknowledgments
- SocketBE - Minecraft Bedrock WebSocket integration
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.