MCP server that bridges Minecraft Bedrock Edition's WebSocket API to Claude Code CLI. Exposes 6 tools: minecraft_command, minecraft_chat, minecraft_build, minecraft_get_events, minecraft_get_status, minecraft_subscribe. Supports both SSE and Streamable HTTP MCP transports. Privacy-first: no disk persistence, no telemetry, memory-only event buffer. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
22 lines
484 B
JSON
22 lines
484 B
JSON
{
|
|
"name": "mc-ai-bridge",
|
|
"version": "1.0.0",
|
|
"description": "MCP server bridging Minecraft Bedrock Edition to Claude Code via WebSocket",
|
|
"type": "module",
|
|
"main": "src/index.js",
|
|
"scripts": {
|
|
"start": "node src/index.js",
|
|
"dev": "node --watch src/index.js"
|
|
},
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "^1.27.1",
|
|
"express": "^4.21.2",
|
|
"ws": "^8.18.0",
|
|
"zod": "^3.25.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=20.0.0"
|
|
},
|
|
"private": true
|
|
}
|