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
Installation
# Clone and install
git clone https://github.com/weikengchen/mcdev-mcp.git
cd mcdev-mcp
npm install
npm run build
Upgrading from an older version? If you have a previous installation using DecompilerMC, run
node dist/cli.js clean --allfirst to remove old cached data.
Initialize
# Download, decompile, and index Minecraft sources (~2-5 minutes)
node dist/cli.js 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
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
node dist/cli.js init -v 1.21.11 --skip-callgraph
# Generate callgraph later
node dist/cli.js callgraph -v 1.21.11
Add to Your MCP Client
{
"mcpServers": {
"mcdev": {
"command": "node",
"args": ["/path/to/mcdev-mcp/dist/index.js"]
}
}
}
Verify Installation
node dist/cli.js 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.
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
| Command | Description |
|---|---|
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
node dist/cli.js clean -v 1.21.11 --all
# Re-initialize
node dist/cli.js 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.
Directory Structure
~/.mcdev-mcp/
├── tools/
│ └── vineflower.jar # Downloaded once
├── java-callgraph2/ # Call graph tool
├── cache/
│ └── {version}/
│ ├── jars/ # Downloaded JARs
│ └── client/ # Decompiled Minecraft sources
├── index/
│ └── {version}/
│ ├── manifest.json # Index metadata
│ └── minecraft/ # Per-package symbol indices
└── tmp/ # Temporary files (cleaned by --all)
Development
npm run build # Compile TypeScript
npm test # Run tests
npm run lint # Lint code
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
Server Terkait
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
MCP Bench Router
Claude Code sucks at design. Let it delegate it's tasks to better models. Claude will use the MCP to get leaderboard of best design models and query specific code changes using OpenRouter.
Remote MCP Server Authless
An example of a remote MCP server deployed on Cloudflare Workers without authentication.
hivekit-mcp
MCP server for git-native agent swarm coordination, providing tools for heartbeat, state, task claiming, and logging across distributed AI agents.
mcp-rubber-duck
Query multiple LLMs in parallel from AI coding tools — rubber duck debugging, but the ducks talk back.
Deliberate Reasoning Engine (DRE)
Transforms linear AI reasoning into structured, auditable thought graphs, enabling language models to externalize their reasoning process as a directed acyclic graph (DAG).
MCP Storybook Image Generator
Generate storybook images for children's stories using Google's Gemini AI.
Domain Checker
Check domain name availability using WHOIS lookups and DNS resolution.
Limetest
A lightweight, AI-powered end-to-end testing framework for CI workflows. Requires an OpenAI API key.
StatsWR MCP Server
A template for deploying a remote MCP server on Cloudflare Workers without authentication.
Devvit
A companion server for building applications on Reddit's developer platform.