MCP Pod
MCP Pod encapsulates the logic for setting up everything required for a MCP server and running it.
Overview
MCP Pod is a tool that encapsulates the logic for setting up everything required for a MCP (Minecraft Clone Protocol) server and running it.
To use MCP Pod, clone the repository from GitHub, follow the setup instructions in the README, and run the provided scripts to launch your MCP server.
- Simplified setup process for MCP servers - Comprehensive configuration options - Easy integration with existing Minecraft server setups
- Setting up a new MCP server for game development.
- Running a test environment for Minecraft server modifications.
- Facilitating multiplayer game testing with custom server configurations.
Add to your AI client
Use these steps to connect MCP Pod 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": {
"mcppod-harmonyjs": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcppod-harmonyjs"
]
}
}
}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": {
"mcppod-harmonyjs": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcppod-harmonyjs"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcppod-harmonyjs": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcppod-harmonyjs"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mcppod-harmonyjs": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcppod-harmonyjs"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcppod-harmonyjs": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcppod-harmonyjs"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcppod-harmonyjs": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcppod-harmonyjs"
]
}
}
}FAQ
What is an MCP server?
An MCP server is a server that uses the Minecraft Clone Protocol to allow for custom game development and modifications.
Is MCP Pod free to use?
Yes! MCP Pod is open-source and free to use under the MIT License.
Can MCP Pod be used for production servers?
Yes! MCP Pod is designed to be robust enough for production use, but thorough testing is recommended.