custom_mcp_servers
Overview
custom_mcp_servers is a project designed to facilitate the setup and management of custom Minecraft server instances.
To use custom_mcp_servers, clone the repository from GitHub, configure the server parameters in the provided scripts, and run the server command to start your custom Minecraft server.
- Easy setup for custom Minecraft servers - Configurable server parameters for tailored gameplay - Support for multiple server instances
- Hosting a private Minecraft server for friends.
- Creating a custom gaming environment with specific mods.
- Testing new Minecraft features in a controlled setting.
Add to your AI client
Use these steps to connect custom_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": {
"custom-mcp-servers-francesliang": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-custom-mcp-servers-francesliang"
]
}
}
}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": {
"custom-mcp-servers-francesliang": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-custom-mcp-servers-francesliang"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"custom-mcp-servers-francesliang": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-custom-mcp-servers-francesliang"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"custom-mcp-servers-francesliang": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-custom-mcp-servers-francesliang"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"custom-mcp-servers-francesliang": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-custom-mcp-servers-francesliang"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"custom-mcp-servers-francesliang": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-custom-mcp-servers-francesliang"
]
}
}
}FAQ
Can I run multiple servers at once?
Yes! You can configure multiple instances with different parameters.
Is there any support for mods?
Yes! You can customize your server with various mods as per your requirements.
What programming language is used?
The project is developed in Python.