drio
Open app

MCP Servers

Source

A collection of Minecraft Protocol (MCP) servers implemented in TypeScript

Catalog onlyCatalog onlySTDIO

Overview

MCP Servers is a collection of Minecraft Protocol (MCP) servers implemented in TypeScript, designed to facilitate various server functionalities for Minecraft.

To use MCP Servers, clone the repository from GitHub, install the necessary dependencies, build the project, and start the desired server type (basic, auth, or proxy).

  • Basic server for handling player connections and chat messages. - Authentication server for managing player sessions. - Proxy server for forwarding connections to other Minecraft servers.
  1. Hosting a basic Minecraft server for players.
  2. Implementing user authentication for secure player sessions.
  3. Creating a proxy to connect multiple Minecraft servers together.

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

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

Claude Code

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

.mcp.json (project root)

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

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

Windsurf

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

~/.codeium/windsurf/mcp_config.json

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

Cline

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

Cline MCP Settings (via UI)

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

FAQ

Can I run multiple server types simultaneously?

Yes! You can run different server types (basic, auth, proxy) at the same time.

Is there a guide for contributing to the project?

Yes! Contributions are welcome, and you can submit a Pull Request for any improvements.

What license is MCP Servers under?

MCP Servers is licensed under the MIT License.