drio
Open app

Minecraft MCP Server

Source

Mirror of

Catalog onlyCatalog onlySTDIO

Overview

Minecraft MCP Server is an early prototype of a Model Context Protocol (MCP) server implementation that integrates the Mineflayer API to interact with Minecraft.

To use the Minecraft MCP Server, clone the repository from GitHub, set up the server environment, and follow the instructions in the documentation to connect and interact with Minecraft using the MCP protocol.

  • Prototype implementation of Model Context Protocol (MCP) for Minecraft. - Integration with Mineflayer API for bot interactions. - Open-source and community-driven development.
  1. Developing custom Minecraft bots using the Mineflayer API.
  2. Experimenting with server-side modifications and enhancements.
  3. Creating interactive experiences within the Minecraft environment.

Add to your AI client

Use these steps to connect Minecraft MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "dennistraub-minecraft-mcp-server-mcp-mirror": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-dennistraub-minecraft-mcp-server-mcp-mirror"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "dennistraub-minecraft-mcp-server-mcp-mirror": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-dennistraub-minecraft-mcp-server-mcp-mirror"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "dennistraub-minecraft-mcp-server-mcp-mirror": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-dennistraub-minecraft-mcp-server-mcp-mirror"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "dennistraub-minecraft-mcp-server-mcp-mirror": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-dennistraub-minecraft-mcp-server-mcp-mirror"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "dennistraub-minecraft-mcp-server-mcp-mirror": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-dennistraub-minecraft-mcp-server-mcp-mirror"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "dennistraub-minecraft-mcp-server-mcp-mirror": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-dennistraub-minecraft-mcp-server-mcp-mirror"
      ]
    }
  }
}

FAQ

What is the Model Context Protocol (MCP)?

MCP is a protocol designed to facilitate interactions between different models and systems in a standardized way.

Is the Minecraft MCP Server free to use?

Yes! The Minecraft MCP Server is open-source and free to use for everyone.

Can I contribute to the Minecraft MCP Server?

Absolutely! Contributions are welcome, and you can find guidelines in the repository.