minecraft-dev-mcp vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
minecraft-dev-mcp by MCDxAI | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 17 | ★ 85,748 |
| 30d uses | — | — |
| Score | 44 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsOther | File SystemDeveloper ToolsProductivity |
| 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.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
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
filesystem · Use cases
- Enable AI models to read and write project files during development
- Allow Claude or other MCP clients to browse and analyze codebases
- Provide secure sandboxed access to specific directories for content generation
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"
}
}
}filesystem · Install
Installation
Using NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}Using Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code Extension
Click the installation buttons in the README to install directly in VS Code.