Overview
mcp-servers-kurtseifried is a collection of MCP (Minecraft Coder Pack) servers designed for developers and enthusiasts to explore and utilize.
To use mcp-servers-kurtseifried, visit the GitHub repository, clone the repository, and follow the setup instructions provided in the documentation.
- A comprehensive collection of MCP servers for Minecraft development. - Easy access to various server configurations and setups. - Community-driven contributions and updates.
- Setting up a custom Minecraft server for mod development.
- Learning about server configurations and optimizations.
- Collaborating with other developers on Minecraft projects.
Add to your AI client
Use these steps to connect mcp-servers-kurtseifried 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": {
"kurtseifried-mcp-servers-kurtseifried-mcp-mirror": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-kurtseifried-mcp-servers-kurtseifried-mcp-mirror"
]
}
}
}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": {
"kurtseifried-mcp-servers-kurtseifried-mcp-mirror": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-kurtseifried-mcp-servers-kurtseifried-mcp-mirror"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"kurtseifried-mcp-servers-kurtseifried-mcp-mirror": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-kurtseifried-mcp-servers-kurtseifried-mcp-mirror"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"kurtseifried-mcp-servers-kurtseifried-mcp-mirror": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-kurtseifried-mcp-servers-kurtseifried-mcp-mirror"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"kurtseifried-mcp-servers-kurtseifried-mcp-mirror": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-kurtseifried-mcp-servers-kurtseifried-mcp-mirror"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"kurtseifried-mcp-servers-kurtseifried-mcp-mirror": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-kurtseifried-mcp-servers-kurtseifried-mcp-mirror"
]
}
}
}FAQ
What is MCP?
MCP stands for Minecraft Coder Pack, a toolset for modding Minecraft.
How can I contribute to the project?
You can contribute by submitting pull requests on the GitHub repository.
Is there any documentation available?
Yes, documentation is available in the repository to help you get started.