mcp-server-sandbox
Overview
The mcp-server-sandbox is a Python-based project designed to provide a sandbox environment for testing and developing Minecraft server modifications.
To use the mcp-server-sandbox, clone the repository from GitHub, set up your Python environment, and run the server command to start the sandbox.
- Easy setup for Minecraft server development - Supports various Minecraft server modifications - Provides a safe environment for testing changes
- Developing and testing Minecraft plugins.
- Experimenting with server configurations without affecting live servers.
- Learning server management and modification techniques.
Add to your AI client
Use these steps to connect mcp-server-sandbox 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-server-sandbox-imghosty17": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-sandbox-imghosty17"
]
}
}
}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-server-sandbox-imghosty17": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-sandbox-imghosty17"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-server-sandbox-imghosty17": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-sandbox-imghosty17"
]
}
}
}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-server-sandbox-imghosty17": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-sandbox-imghosty17"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-server-sandbox-imghosty17": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-sandbox-imghosty17"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-server-sandbox-imghosty17": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-sandbox-imghosty17"
]
}
}
}FAQ
Is mcp-server-sandbox free to use?
Yes! mcp-server-sandbox is open-source and free for everyone to use.
What version of Python is required?
The project is compatible with Python 3.x.
Can I contribute to the mcp-server-sandbox?
Yes! Contributions are welcome, and you can submit pull requests on GitHub.