Get the FREE Ultimate OpenClaw Setup Guide →

mcpe

A Minecraft PE server in Node.js

Installation
Run this command in your terminal to add the MCP server to Claude Code.
Run in terminal:
Command
claude mcp add --transport stdio qtx0213-mcpe-server node app.js

How to use

This MCP server is a Node.js-based Minecraft Pocket Edition (MCPE) server intended for development and testing. To run it, install dependencies and start the server process, after which it will accept MCPE client connections using the server's protocol implementation. You can attach a client to the running instance on the default port defined by the server (as per the codebase), and observe logs and responses to verify behavior. Since this is an R&D server, you can modify the underlying Node.js code to experiment with protocol handling, gameplay features, or custom behaviors and then restart the server to test changes.

Usage flow: install dependencies with npm, launch the server with node app.js, and connect your MCPE client to the server address/port configured by the project. Review console output for connection events, packet handling, and any debugging hooks you enable during development.

How to install

Prerequisites:

  • Node.js and npm installed on your machine (verify with node -v and npm -v).
  • Git (optional, for cloning the repository).

Installation steps:

  1. Clone or download the repository: git clone https://github.com/your-org/mcpe-server.git cd mcpe-server

  2. Install dependencies: npm install

  3. Start the server: node app.js

  4. (Optional) If you want to run via npm script, check package.json for a start script and use: npm run start

  5. Connect to the server from an MCPE client using the appropriate host and port as configured in the project (default port typically defined in the code).

  6. Stop the server with Ctrl+C when finished.

Additional notes

Notes and tips:

  • This is an experimental MCPE server implemented in Node.js; changes may affect protocol handling and client compatibility.
  • If you modify code, restart the server to apply changes.
  • Check the console output for connection events, packet processing, and error messages to diagnose issues.
  • Ensure your environment allows network connections on the server port used by the MCP server.
  • There may be no external dependencies beyond npm install; if additional services are required, configure environment variables as needed in your deployment environment.

Related MCP Servers

Sponsor this space

Reach thousands of developers