package.json•2.05 kB
{
"name": "minecraft-bedrock-mcp-server",
"version": "1.0.0",
"description": "TypeScript-based MCP server for controlling Minecraft Bedrock Edition via WebSocket with hierarchical tools for player, agent, world, and building operations",
"main": "dist/server.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Mming-Lab/minecraft-bedrock-mcp-server.git"
},
"homepage": "https://github.com/Mming-Lab/minecraft-bedrock-mcp-server#readme",
"bugs": {
"url": "https://github.com/Mming-Lab/minecraft-bedrock-mcp-server/issues"
},
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"dev": "tsc && node dist/server.js",
"debug": "tsc && node --inspect dist/server.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:build": "tsc && echo 'Build test completed'",
"test:websocket": "node tests/websocket-connection-test.js",
"test:responses": "node tests/comprehensive-response-test.js",
"test:auto": "node dist/server.js --auto-test",
"test:e2e": "echo 'E2E手動テストを実行してください: tests/e2e-manual-test.md'",
"test:all": "npm run test:websocket && npm run test:responses && npm test"
},
"dependencies": {
"socket-be": "^2.1.0",
"uuid": "^9.0.1",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^20.0.0",
"@types/uuid": "^9.0.0",
"@types/ws": "^8.5.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"jest": "^29.7.0",
"nodemon": "^3.0.0",
"prettier": "^3.0.0",
"ts-jest": "^29.4.0",
"typedoc": "^0.28.7",
"typescript": "^5.0.0"
},
"keywords": [
"minecraft",
"bedrock",
"websocket",
"mcp",
"model-context-protocol",
"typescript",
"claude",
"ai",
"automation",
"gaming"
],
"author": "mcbk-mcp contributors",
"license": "GPL-3.0",
"engines": {
"node": ">=16.0.0"
}
}