drio
Open app

mcp-servers

Source

MCP Server building examples

Catalog onlyCatalog onlySTDIO

Overview

MCP Servers is a project that provides examples for building Minecraft servers, aimed at helping users set up and configure their own servers effectively.

To use mcp-servers, visit the GitHub repository, review the provided examples, and follow the instructions to set up your own Minecraft server.

  • Comprehensive examples for various server configurations - Step-by-step guides for server setup - Community-driven contributions and updates
  1. Setting up a personal Minecraft server for friends.
  2. Creating a public server for community gaming.
  3. Learning about server management and configuration.

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

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

Claude Code

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

.mcp.json (project root)

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

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

Windsurf

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

~/.codeium/windsurf/mcp_config.json

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

Cline

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

Cline MCP Settings (via UI)

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

FAQ

Can I use these examples for any version of Minecraft?

The examples are tailored for specific versions, so check the documentation for compatibility.

Is there support available if I encounter issues?

Yes! You can open issues on the GitHub repository for community support.

Are the examples free to use?

Yes! All examples are open-source and free to use.