minecraft-dev-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
minecraft-dev-mcp by MCDxAI | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 17 | ★ 85,748 |
| 30d uses | — | — |
| Score | 44 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
minecraft-dev-mcp · Summary
MCP server providing 20 tools for Minecraft mod development including decompilation, mapping, and source code analysis.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
minecraft-dev-mcp · Use cases
- Automatically decompile Minecraft source code for a specific version and retrieve Java source for any class
- Analyze third-party mod JARs to extract metadata, dependencies, and entry points
- Validate Mixin code against Minecraft source to catch errors before runtime
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
minecraft-dev-mcp · Install
Installation
**NPM (Recommended)**
npm install -g @mcdxai/minecraft-dev-mcp**NPX (No Install)** Use npx -y @mcdxai/minecraft-dev-mcp directly in config.
**Prerequisites**: Node.js 18+ and Java 17+
Claude Desktop Configuration
Add to your Claude Desktop configuration file:
{
"mcpServers": {
"minecraft-dev": {
"command": "minecraft-dev-mcp"
}
}
}Claude Code Configuration
Add to .claude/settings.local.json in your project:
{
"mcpServers": {
"minecraft-dev": {
"command": "minecraft-dev-mcp"
}
}
}everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything