mcdev-mcp
An MCP server that helps coding agents to work with Minecraft mod development
mcdev-mcp
An MCP (Model Context Protocol) server that empowers AI coding agents to work effectively with Minecraft mod development. Provides accurate, up-to-date access to decompiled Minecraft source code using official Mojang mappings.
Features
- Decompiled Source Access — Auto-downloads and decompiles Minecraft client using Vineflower
- Dev Snapshot Support — Works with development snapshots (e.g.,
26.1-snapshot-10) that lack ProGuard mappings - Symbol Search — Search for classes, methods, and fields by name
- Source Retrieval — Get full class source or individual methods with context
- Package Exploration — List all classes under a package path or discover available packages
- Class Hierarchy — Find subclasses and interface implementors
- Call Graph Analysis — Find method callers and callees across the entire codebase
- Zero Configuration — Auto-initializes on first use if sources are cached
Quick Start
Security note —
initis intentionally terminal-only. The MCP server only exposes read/query tools. Downloading and decompiling Minecraft sources must be triggered by you in the terminal; an AI agent connected to the server has no tool surface to triggerinit,rebuild,clean, orcallgraph.
1. Initialize in your terminal
# Download, decompile, and index Minecraft sources (~2-5 minutes)
npx mcdev-mcp init -v 1.21.11
This command:
- Downloads the Minecraft client JAR
- Decompiles using Vineflower (pure Java, 8 threads)
- Builds the symbol index (classes, methods, fields, inheritance)
- Generates call graph for
mc_find_refs
Data is stored in your OS cache directory (see Storage location below), so it persists across npx invocations. Expect roughly ~2 GB per Minecraft version — mostly decompiled .java sources and a SQLite callgraph database. All of it is regeneratable, so your OS is free to evict it under storage pressure and init will rebuild what it needs.
2. Add to your MCP client
{
"mcpServers": {
"mcdev": {
"command": "npx",
"args": ["-y", "mcdev-mcp", "serve"]
}
}
}
The serve subcommand starts the MCP server over stdio. Your MCP client (Claude Desktop, Cursor, etc.) launches it automatically — you never run serve directly.
Supported Versions
| Version Type | Example | Notes |
|---|---|---|
| Dev snapshots | 26.1-snapshot-10 | Already unobfuscated, no mappings needed |
| Release (>= 1.21.11) | 1.21.11 | Uses pre-unobfuscated JAR when available |
| Old versions | < 1.21.11 | Not supported |
Note: Minecraft is now using a new versioning scheme (26.x). Versions before 1.21.11 are not supported.
(Optional) Skip Call Graph
# Skip callgraph generation if you don't need mc_find_refs
npx mcdev-mcp init -v 1.21.11 --skip-callgraph
# Generate callgraph later
npx mcdev-mcp callgraph -v 1.21.11
Verify Installation
npx mcdev-mcp status
Note: The
mc_set_versiontool must be called before using any other MCP tools. If the version isn't initialized, the AI will be instructed to ask you to runinit.
Install from source (development)
git clone https://github.com/weikengchen/mcdev-mcp.git
cd mcdev-mcp
npm install
npm run build
# Use the local build instead of npx
node dist/cli.js init -v 1.21.11
node dist/cli.js serve # stdio MCP server; MCP clients launch this
Upgrading from an older version? If you have a previous installation using DecompilerMC, run
npx mcdev-mcp clean --allfirst to remove old cached data.
MCP Tools
Version Management
Before using any other tools, set the active Minecraft version:
mc_set_version
Set the active Minecraft version for this session. Must be called before other tools.
{
"version": "1.21.11"
}
mc_list_versions
List all Minecraft versions that have been initialized.
{}
Tool Requirements
| Tool | Requires init | Requires callgraph |
|---|---|---|
mc_set_version | - | - |
mc_list_versions | - | - |
mc_search | ✓ | - |
mc_get_class | ✓ | - |
mc_get_method | ✓ | - |
mc_list_classes | ✓ | - |
mc_list_packages | ✓ | - |
mc_find_hierarchy | ✓ | - |
mc_find_refs | ✓ | ✓ |
mc_search
Search for Minecraft classes, methods, or fields by name pattern.
{
"query": "Minecraft",
"type": "class"
}
mc_get_class
Get the full decompiled source code for a class.
{
"className": "net.minecraft.client.Minecraft"
}
mc_get_method
Get source code for a specific method with context.
{
"className": "net.minecraft.client.Minecraft",
"methodName": "tick"
}
mc_find_refs
Find who calls a method (callers) or what it calls (callees).
{
"className": "net.minecraft.client.MouseHandler",
"methodName": "setup",
"direction": "callers"
}
| Direction | Description |
|---|---|
callers | Find methods that call this method |
callees | Find methods this method calls |
Note: Requires callgraph to be generated (included in
initby default).
mc_list_classes
List all classes under a specific package path (includes subpackages).
{
"packagePath": "net.minecraft.client.gui.screens"
}
mc_list_packages
List all available packages. Optionally filter by namespace.
{
"namespace": "minecraft"
}
| Namespace | Description |
|---|---|
minecraft | Minecraft client classes |
fabric | Fabric API classes (if indexed) |
mc_find_hierarchy
Find classes that extend or implement a given class or interface.
{
"className": "net.minecraft.world.entity.Entity",
"direction": "subclasses"
}
| Direction | Description |
|---|---|
subclasses | Classes that extend this class |
implementors | Classes that implement this interface |
Requirements
| Dependency | Version | Purpose |
|---|---|---|
| Node.js | 18+ | Runtime |
| Java | 8+ | Decompilation (Vineflower) & callgraph |
| ~2GB | disk | Decompiled sources + cache |
Note: Java 17+ is recommended for the
callgraphcommand due to Gradle compatibility.
CLI Commands
Invoke via npx mcdev-mcp <command> (or node dist/cli.js <command> from a source checkout).
| Command | Description |
|---|---|
serve | Start the MCP server over stdio (launched by MCP clients — not run by humans) |
init -v <version> | Download, decompile, index Minecraft sources, and generate callgraph |
callgraph -v <version> | Generate call graph for mc_find_refs |
status | Show all initialized versions |
rebuild -v <version> | Rebuild the symbol index from cached sources |
clean --all | Clean all cached data |
Re-indexing
To re-index a version:
# Clean existing data for a version
npx mcdev-mcp clean -v 1.21.11 --all
# Re-initialize
npx mcdev-mcp init -v 1.21.11
Architecture
mcdev-mcp/
├── src/
│ ├── index.ts # MCP server entry point
│ ├── cli.ts # CLI commands
│ ├── tools/ # MCP tool implementations
│ ├── decompiler/ # Vineflower integration (pure TypeScript/Java)
│ ├── indexer/ # Symbol index builder
│ ├── callgraph/ # Call graph generation & queries
│ └── storage/ # Source & index storage
└── dist/ # Compiled output
How It Works
┌─────────────────────────────────────────────────────────────┐
│ MCP Client (AI Agent) │
└─────────────────────────────────────────────────────────────┘
│
▼
┌─────────────────────────────────────────────────────────────┐
│ mcdev-mcp Server │
│ ┌─────────┐ ┌──────────┐ ┌──────────┐ ┌───────────┐ │
│ │ search │ │get_class │ │get_method│ │ find_refs │ │
│ └────┬────┘ └────┬─────┘ └────┬─────┘ └─────┬─────┘ │
│ ┌─────────────┐ ┌───────────────┐ ┌─────────────────┐ │
│ │list_classes │ │list_packages │ │ find_hierarchy │ │
│ └──────┬──────┘ └───────┬───────┘ └────────┬────────┘ │
│ └────────────────┼──────────────────┘ │
│ │ │
│ ┌──────────────────┴───────────────────┐ │
│ ▼ ▼ │
│ ┌──────────┐ ┌─────────────┐ │
│ │ Index │ │ Callgraph │ │
│ │ (JSON) │ │ (SQLite) │ │
│ └────┬─────┘ └──────┬──────┘ │
└───────┼────────────────────────────────────────┼────────────┘
▼ ▼
┌───────────────────┐ ┌─────────────────────┐
│ Decompiled Src │ │ java-callgraph2 │
│ (Vineflower) │ │ (static analysis) │
└───────────────────┘ └─────────────────────┘
See docs/ARCHITECTURE.md for detailed design documentation.
Storage location
mcdev-mcp stores all cached data in the OS-standard cache directory, courtesy of env-paths. Everything under this directory is regeneratable — safe to delete at any time — and init will rebuild what it needs on next run.
| Platform | Path |
|---|---|
| macOS | ~/Library/Caches/mcdev-mcp |
| Linux | ~/.cache/mcdev-mcp (XDG-compliant, honours $XDG_CACHE_HOME) |
| Windows | %LOCALAPPDATA%\mcdev-mcp\Cache |
Disk usage: approximately 2 GB per Minecraft version (JAR ~60 MB, decompiled sources ~1.8 GB, callgraph DB ~200 MB, symbol index ~50 MB). Run npx mcdev-mcp status to see which versions are cached, and npx mcdev-mcp clean --all (or clean -v <version> --all) to reclaim space.
Layout
<cache-dir>/
├── tools/
│ └── vineflower.jar # Decompiler, downloaded once
├── java-callgraph2/ # Call graph tool, cloned once
├── cache/
│ └── {version}/
│ ├── jars/ # Downloaded Minecraft client JARs
│ └── client/ # Decompiled Minecraft sources
├── index/
│ └── {version}/
│ ├── manifest.json # Index metadata
│ └── minecraft/ # Per-package symbol indices
└── tmp/ # Temporary files (cleaned by --all)
Upgrading from a pre-1.0 install? Earlier versions stored everything under
~/.mcdev-mcp/. If you have data there and want to keep it, move it manually to the new location (e.g. on macOS:mv ~/.mcdev-mcp ~/Library/Caches/mcdev-mcp). Otherwise just runinitagain — the download step is idempotent.
Development
npm run build # Compile TypeScript
npm test # Run tests
npm run lint # Lint code
npm run mcpb # Build a Claude Desktop MCPB bundle for the current platform
Releasing
Releases are tag-driven. Pushing a v* tag triggers GitHub Actions to:
- Run the full test matrix and TypeScript checks
- Build platform-specific MCPB bundles on macOS, Linux, and Windows runners
- Publish the package to npm
- Create a GitHub Release with all
.mcpbbundles attached
To cut a release:
# 1. Bump the version (creates a commit + a v<version> tag)
npm version patch # or: minor, major, 1.2.3, etc.
# 2. Push the commit and the new tag
git push --follow-tags
That's it — the workflow at .github/workflows/ci.yml handles the rest. Required repository secret: NPM_TOKEN (an npm automation token with publish permission for this package; set under Settings → Secrets and variables → Actions).
The MCPB build is also runnable locally:
npm run mcpb
# → dist-mcpb/mcdev-mcp-<version>-<platform>-<arch>.mcpb
The native better-sqlite3 binary is platform-specific, which is why each .mcpb is built on a matching runner rather than cross-built. macOS users get an arm64 build; Intel Mac support would require adding macos-13 to the matrix.
Installing the MCPB in Claude Desktop
Download the bundle for your platform from the Releases page and double-click the .mcpb file. Claude Desktop will validate the manifest and offer to install it. After install, run mcdev-mcp init -v <version> in a terminal once to populate the cache (the extension cannot trigger init itself — it's deliberately terminal-only, see Quick Start).
Limitations
- Static Analysis Only:
mc_find_refscannot trace calls through reflection, JNI callbacks, or lambda/method references created dynamically - Client Only: Server-side classes are not included
Legal Notice
This tool decompiles Minecraft source code for development reference purposes. Please respect Mojang's intellectual property:
You MAY:
- Decompile and study the code for understanding and learning
- Use the knowledge to develop mods that don't contain substantial Mojang code
- Reference class/method names for mod development
You may NOT:
- Distribute decompiled source code
- Distribute modified versions of Minecraft
- Use decompiled code commercially without permission
Per the Minecraft EULA: "You may not distribute any Modded Versions of our game or software" and "Mods are okay to distribute; hacked versions or Modded Versions of the game client or server software are not okay to distribute."
This tool is for reference only — do not copy decompiled code directly into your projects.
Third-Party Components
This project includes or uses third-party software under the following licenses:
- DecompilerMC (MIT) — Decompiler logic adapted and translated from Python to TypeScript in
src/decompiler/ - Vineflower (Apache-2.0) — Java decompiler used for source generation
- java-callgraph2 — Cloned at runtime for static call graph generation
Additional runtime dependencies (downloaded/used):
- Mojang — Official ProGuard mappings and Minecraft client JAR
See LICENSE for full license text and third-party attributions.
License
MIT — Copyright (c) 2025 mcdev-mcp contributors
Related Servers
Scout Monitoring MCP
sponsorPut performance and error data directly in the hands of your AI assistant.
Alpha Vantage MCP Server
sponsorAccess financial market data: realtime & historical stock, ETF, options, forex, crypto, commodities, fundamentals, technical indicators, & more
Botrite by Lattiq
Stateful health monitoring, diagnostics, and web attestation for AI agents. 11 MCP tools. Free Founder's Beta
Grafana
Search dashboards, investigate incidents and query datasources in your Grafana instance
GhostMCP
Injectable MCP server for AI-driven reverse engineering inside processes
MCP Prompt Server
Provides preset prompt templates as tools to assist clients like Cursor and Windsurf in executing various tasks.
RenderLens
Visual verification MCP server — render code to screenshots, run WCAG accessibility audits, and pixel-diff UI changes. Free, no API key.
ID Generator MCP
Generate unique IDs using various algorithms like UUID, CUID2, Nanoid, and ULID.
Unison MCP Server
An MCP server for the Unison language, allowing AI assistants to interact with the Unison Codebase Manager (UCM).
GodotIQ
The intelligent MCP server for AI-assisted Godot 4 development. 35 tools for spatial intelligence, code understanding, flow tracing, and visual debugging. 22 free, full suite $19.
pyATS
Interact with network devices using Cisco's pyATS and Genie libraries for model-driven automation.
MCP HAR Server
Parses HAR (HTTP Archive) files and displays requests in a simplified format for AI assistants.