drio
Open app

Setup

Source

Mirror of

Catalog onlyCatalog onlySTDIO

Overview

PythonScratcher_mcpi-server-list is a project that provides a setup guide for configuring a server list for Minecraft Pi Edition. It allows users to customize their server addresses and manage their own server lists.

To use this project, navigate to /client/index.html and modify the server address from https://checker.mcpi.host to your desired server address. If you want to create your own server list, change the URL to your own server list link.

  • Easy setup for Minecraft Pi Edition server lists - Customizable server addresses - Bypass CORS issues with provided links
  1. Setting up a personal server list for Minecraft Pi Edition.
  2. Managing multiple server addresses for easy access.
  3. Bypassing CORS restrictions for modern browsers.

Add to your AI client

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

Claude Code

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

.mcp.json (project root)

{
  "mcpServers": {
    "pythonscratcher-mcpi-server-list-mcp-mirror": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-pythonscratcher-mcpi-server-list-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": {
    "pythonscratcher-mcpi-server-list-mcp-mirror": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-pythonscratcher-mcpi-server-list-mcp-mirror"
      ]
    }
  }
}

Windsurf

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

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "pythonscratcher-mcpi-server-list-mcp-mirror": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-pythonscratcher-mcpi-server-list-mcp-mirror"
      ]
    }
  }
}

Cline

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

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "pythonscratcher-mcpi-server-list-mcp-mirror": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-pythonscratcher-mcpi-server-list-mcp-mirror"
      ]
    }
  }
}

FAQ

What is CORS and why do I need to bypass it?

CORS (Cross-Origin Resource Sharing) is a security feature in modern browsers that can restrict access to resources. This project provides methods to bypass these restrictions.

Can I contribute to this project?

Yes! You can fork the repository and submit a pull request to contribute.

Is there a license for this project?

Yes, this project is licensed under GPL 3.0.