drio
Open app

npx-mcp-server

Source

Catalog onlyCatalog onlySTDIO

Overview

npx-mcp-server is a server implementation that allows users to run Minecraft server commands using npx, simplifying the process of setting up and managing Minecraft servers.

To use npx-mcp-server, simply run the command npx mcp-server in your terminal, and it will set up a Minecraft server environment for you.

  • Easy setup of Minecraft servers using npx - Supports various Minecraft server commands - Simplifies server management for users
  1. Quickly launching a Minecraft server for gaming sessions.
  2. Managing server commands without complex setups.
  3. Facilitating multiplayer gaming experiences.

Add to your AI client

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

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

Claude Code

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

.mcp.json (project root)

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

VS Code (Copilot)

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

.vscode/mcp.json

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

Windsurf

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

~/.codeium/windsurf/mcp_config.json

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

Cline

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

Cline MCP Settings (via UI)

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