drio
Open app

mcp-servers

Source

Catalog onlyCatalog onlySTDIO

Overview

MCP-servers is a personal implementation of a Minecraft server, designed for individual use and customization.

To use mcp-servers, clone the repository from GitHub, set up your environment, and run the server using JavaScript.

  • Customizable server settings for personal gameplay - Built with JavaScript for easy modification - Supports various Minecraft server functionalities
  1. Hosting a personal Minecraft game with friends.
  2. Testing Minecraft plugins and mods in a controlled environment.
  3. Learning server management and JavaScript programming through hands-on experience.

Add to your AI client

Use these steps to connect mcp-servers 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": {
    "mcp-servers-masatoraatarashi": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-servers-masatoraatarashi"
      ]
    }
  }
}

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": {
    "mcp-servers-masatoraatarashi": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-servers-masatoraatarashi"
      ]
    }
  }
}

Claude Code

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

.mcp.json (project root)

{
  "mcpServers": {
    "mcp-servers-masatoraatarashi": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-servers-masatoraatarashi"
      ]
    }
  }
}

VS Code (Copilot)

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

.vscode/mcp.json

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

Windsurf

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

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mcp-servers-masatoraatarashi": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-servers-masatoraatarashi"
      ]
    }
  }
}

Cline

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

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcp-servers-masatoraatarashi": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-servers-masatoraatarashi"
      ]
    }
  }
}

FAQ

Can I modify the server settings?

Yes! The server settings are fully customizable to suit your preferences.

Is there any documentation available?

Yes! You can find documentation in the GitHub repository to help you set up and customize your server.

What version of Minecraft does this server support?

The server is designed to support the latest versions of Minecraft, but compatibility may vary based on the specific features used.