Overview
The mcp-server project is a guide to help users learn how to create and manage their own Minecraft server instances.
To use mcp-server, follow the instructions provided in the GitHub repository to set up your own server environment using the Go programming language.
- Comprehensive tutorials on server setup and management - Support for various Minecraft server configurations - Community-driven contributions and updates
- Setting up a personal Minecraft server for friends and family.
- Learning server management skills for game development.
- Experimenting with different server configurations and mods.
Add to your AI client
Use these steps to connect mcp-server 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-yigmmk": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-yigmmk"
]
}
}
}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-yigmmk": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-yigmmk"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-server-yigmmk": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-yigmmk"
]
}
}
}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-yigmmk": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-yigmmk"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-server-yigmmk": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-yigmmk"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-server-yigmmk": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-yigmmk"
]
}
}
}FAQ
Can I use mcp-server for any version of Minecraft?
Yes! mcp-server is designed to be flexible and can support various Minecraft versions.
Is there a cost associated with using mcp-server?
No! mcp-server is open-source and free to use.
What programming language is mcp-server written in?
mcp-server is written in Go.