Setup
Overview
mcpi-server-list is a tool designed to help users set up and manage a list of Minecraft: Pi Edition servers.
To use mcpi-server-list, navigate to /client/index.html, update the server address from https://checker.mcpi.host to your own server address, and modify the server list link if desired.
- Easy setup for your own Minecraft: Pi Edition server list. - Bypass CORS issues by using provided proxy links. - Flexible configuration for personal server addresses and lists.
- Setting up a personal server list for Minecraft: Pi Edition.
- Managing multiple server addresses for players.
- Overcoming CORS limitations in modern browsers for seamless functionality.
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": {
"mcpi-server-list-pythonscratcher": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcpi-server-list-pythonscratcher"
]
}
}
}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": {
"mcpi-server-list-pythonscratcher": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcpi-server-list-pythonscratcher"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcpi-server-list-pythonscratcher": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcpi-server-list-pythonscratcher"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mcpi-server-list-pythonscratcher": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcpi-server-list-pythonscratcher"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcpi-server-list-pythonscratcher": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcpi-server-list-pythonscratcher"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcpi-server-list-pythonscratcher": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcpi-server-list-pythonscratcher"
]
}
}
}FAQ
What is CORS and how does this project address it?
CORS (Cross-Origin Resource Sharing) helps control access to resources. This project provides proxy links to bypass CORS issues for browser compatibility.
Can I contribute to this project?
Yes! You can fork the repository and submit a pull request if you'd like to contribute.
Is there a license for mcpi-server-list?
Yes, mcpi-server-list is licensed under GPL 3.0.