minecraft-modding-mcp
Health Warn
- License — License: MIT
- Description — Repository has a description
- Active repo — Last push 0 days ago
- Low visibility — Only 5 GitHub stars
Code Fail
- exec() — Shell command execution in scripts/changelog-release-gate.mjs
- process.env — Environment variable access in scripts/named-set-gate.mjs
Permissions Pass
- Permissions — No dangerous permissions requested
No AI report is available for this listing yet.
MCP server for AI-assisted Minecraft modding: inspect decompiled source, resolve Mojang/Yarn/Intermediary mappings, diff versions, analyze Fabric/Forge/NeoForge mod JARs, and validate Mixin, Access Widener, and Access Transformer files.
@adhisang/minecraft-modding-mcp
English | 日本語
Note: This project is entirely vibe-coded — built with AI-assisted development without formal specs.
@adhisang/minecraft-modding-mcp is an MCP server for AI-assisted Minecraft modding workflows, built on the Model Context Protocol. Use it when an agent needs to inspect Minecraft source, resolve mappings, compare versions, analyze mod JARs, validate Mixin, Access Widener, or Access Transformer files, or work with NBT and registry data from an MCP client.
It runs over stdio and works with Claude Desktop, Claude Code, VS Code, Codex CLI, Gemini CLI, and other MCP-capable clients.
41 tools (6 entry + 35 expert) | 9 resources | 4 namespace mappings | SQLite-backed cache
Features
- Source exploration: browse, list, and search decompiled Minecraft source with line-level context
- Mapping-aware symbol work: convert class, field, and method names between
obfuscated,mojang,intermediary, andyarn - Version comparison: compare class signatures, registry entries, and migration-oriented summaries across Minecraft versions
- Mod JAR analysis: read Fabric, Forge, and NeoForge metadata, entrypoints, Mixin configs, dependencies, source, and remap previews
- Project validation: validate Mixin source,
.accesswidenerfiles, and Forge/NeoForge Access Transformer files against the target version - NBT, registry, cache, and diagnostics: patch NBT payloads, inspect generated registry data, and manage cache/runtime state
- MCP resources: expose versions, class source, artifact metadata, and mappings through URI-based resources
Protocol Support
The server implements MCP protocol revision 2026-07-28 and keeps the legacy initialize-based protocol (2025-11-25 back through 2024-10-07) fully supported in the same binary — no configuration needed:
- Legacy clients initialize as before and see the same tool names, input contracts, and response envelopes — byte-compatible except for a short list of recorded deviations (see the legacy-exceptions list in docs/tool-reference.md → MCP Protocol Support).
- Modern clients (2026-07-28) skip
initialize, probe withserver/discover, and send per-requestio.modelcontextprotocol/*_meta. Modern results carryresultTypeand the server identity echo; the cacheable methods additionally carry cache metadata (ttlMs/cacheScope). - One stdio process serves one era, selected by the client's first signal; the selection persists across the server's internal worker restarts.
Wire-level details — era selection, the rejection and version-negotiation tables, cache values, and framing — are in docs/tool-reference.md → MCP Protocol Support.
Quick Start
Package Users
Requirements:
- Node.js 22.13.0+
- Java is only required for
remap-mod-jarand decompile or remap flows that need Vineflower or tiny-remapper
Start the server locally:
npx -y @adhisang/minecraft-modding-mcp
Use this same command in MCP client configs. If automatic JAR downloads are blocked in your environment, set MCP_VINEFLOWER_JAR_PATH and MCP_TINY_REMAPPER_JAR_PATH there.
Client Setup
CLI clients can register the package command directly.
Claude Code:
claude mcp add minecraft-modding -- npx -y @adhisang/minecraft-modding-mcp
OpenAI Codex CLI:
codex mcp add minecraft-modding -- npx -y @adhisang/minecraft-modding-mcp
Run claude mcp list or codex mcp list after registration to verify the server is available.
The stdio transport auto-detects newline-delimited and Content-Length framing, so the same server command works across Codex and standard MCP clients.
Claude Desktop
Add the following to your claude_desktop_config.json:
{
"mcpServers": {
"minecraft-modding": {
"command": "npx",
"args": ["-y", "@adhisang/minecraft-modding-mcp"]
}
}
}
VS Code
Add the following to .vscode/mcp.json in your workspace:
{
"servers": {
"minecraft-modding": {
"command": "npx",
"args": ["-y", "@adhisang/minecraft-modding-mcp"]
}
}
}
Gemini CLI
Add the following to ~/.gemini/settings.json:
{
"mcpServers": {
"minecraft-modding": {
"command": "npx",
"args": ["-y", "@adhisang/minecraft-modding-mcp"]
}
}
}
Then run:
/mcp list
Custom Environment
Pass environment variables to override defaults:
{
"mcpServers": {
"minecraft-modding": {
"command": "npx",
"args": ["-y", "@adhisang/minecraft-modding-mcp"],
"env": {
"MCP_CACHE_DIR": "/path/to/custom/cache",
"MCP_MAPPING_SOURCE_PRIORITY": "maven-first"
}
}
}
}
When a build used a non-default Gradle User Home, pass gradleUserHome on cache-backed source, mapping, validation, and workflow calls. The server treats it as a per-call Gradle User Home and searches <gradleUserHome>/loom-cache and <gradleUserHome>/caches/fabric-loom before the MCP process default. It does not accept arbitrary Loom cache directories.
Start Here
These six top-level workflow tools cover the common paths and return summary-first results. They are the best default starting points for agents and MCP clients.
All six return result.summary first and can include summary.nextActions when there is a clear follow-up step. Pick the tool from the table, then use the examples and reference docs for exact payloads.
| Tool | Start here for |
|---|---|
inspect-minecraft |
versions, artifacts, classes, files, and source search |
analyze-symbol |
symbol existence checks, mapping conversion, lifecycle tracing, and workspace symbol resolution |
compare-minecraft |
version-pair diffs, class diffs, registry diffs, and migration-oriented overviews |
analyze-mod |
mod metadata, decompile/search flows, class source, bytecode member queries, and safe remap preview/apply |
validate-project |
workspace summaries plus direct Mixin, Access Widener, and Access Transformer validation |
manage-cache |
cache inventory, verification, and preview/apply cleanup workflows |
Workflow Notes
These notes cover high-frequency decisions during onboarding. For the full pitfall list, exact contracts, migration notes, and environment variables, see docs/tool-reference.md.
search-class-sourcedefaults toqueryMode="auto"and keeps separator queries such asfoo.bar,foo_bar, andfoo$baron the indexed path. UsequeryMode="literal"for an explicit full substring scan.- If you do not already have an artifact, prefer
subject.kind="workspace"forinspect-minecraftinstead of guessing artifact details.subject.focusis an object, not a string: use{ "kind": "class", "className": "..." },{ "kind": "search", "query": "..." }, or{ "kind": "file", "filePath": "..." }.task="auto"dispatches only fromsubject.kindandfocus.kind; it is not a natural-language planner. Invalid string focus returns class/search/fileexampleCalls, while missing artifact context keeps the requested task in a retryablesuggestedCall. trace-symbol-lifecycleexpectsClass.methodinsymbol. Keep exact overload matching in the separatedescriptorfield.- For unobfuscated releases such as
26.1+,check-symbol-existsandanalyze-symbol task="exists"validatemojanglookups against runtime bytecode when no mapping graph exists, and returnmapping_unavailablewhen the runtime JAR itself is unreachable. analyze-modandvalidate-projectrequire structuredsubjectobjects and canonicalincludegroups; stale string-subject or domain-include payloads returnERR_INVALID_INPUTwith a retryablesuggestedCall.validate-project task="project-summary"propagatespreferProjectVersion=trueacross discovered Mixin, Access Widener, and Access Transformer checks. If no version can be resolved from the request orgradle.properties, the summary returns recovery guidance instead of guessing.validate-mixinandvalidate-projectkeepmapping-healthlightweight forobfuscatedandmojangvalidation, avoiding full Tiny mapping graph loads unlessintermediaryoryarnnamespaces are requested.validate-project task="project-summary"uses a lightweight artifact probe fortasks["minecraft.artifact.resolved"]; it does not decompile Minecraft or rebuild the source index just to report per-probe status. It does read the runtime jar's bytes to derive theartifactIdit reports, and repeat probes of the same jar in one process reuse that digest. SetVALIDATE_PROJECT_TASKS_OFF=1to omit the additivetasksfield.validate-projecthas a supervisor-owned end-to-end deadline of 120 seconds, including queue time. SetMCP_VALIDATE_PROJECT_TIMEOUT_MSto an ASCII-decimal value from10000through600000to override it. A timeout returnsERR_TOOL_TIMEOUT; a running timeout restarts the isolated worker before queued calls resume, while a queue timeout leaves the current worker untouched.- Artifact downloads are capped at 512 MiB (
536870912bytes) each. SetMCP_MAX_DOWNLOAD_BYTESto an ASCII-decimal byte count to override it; values below 1 MiB are raised to 1 MiB, and anything else — non-numeric, malformed, or too large to be an exact integer — falls back to the default. The cap is checked twice: againstContent-Lengthbefore any body is read (a header that is not a plain byte count is treated as absent rather than as a breach), and against the bytes actually received, so a chunked or mis-declared response is caught too. A download that exceeds it fails withERR_LIMIT_EXCEEDEDand is not retried; the partial file is deleted on a best-effort basis, so a file the server cannot remove may survive the refusal. A cached copy is never served in its place — a cap is a configuration verdict, not a passing outage, and standing a stale artifact in for it would hide the ceiling instead of reporting it. When every repository trips the cap, the terminalERR_REPO_FETCH_FAILEDreports it where a caller can actually read it:hintscarries the sentence namingMCP_MAX_DOWNLOAD_BYTESand the byte count to clear, andcontext.repoFailureCodeisERR_LIMIT_EXCEEDED. - Nested (Jar-in-Jar) entries are capped at 64 MiB (
67108864bytes) of uncompressed data each. SetMCP_MAX_NESTED_JAR_ENTRY_BYTESto override it, on the same rules as the download cap: ASCII decimal digits, values below 1 MiB raised to 1 MiB, anything else falling back to the default. The size is checked against the entry's declared uncompressed size before the read starts and again against the bytes actually streamed. A breach fails that one inner jar withERR_LIMIT_EXCEEDED; the shell jar's other inner jars still resolve. - Queued calls resume only after the replacement worker completes initialization replay. If replacement startup or replay fails, queued tool calls terminate with
ERR_WORKER_RESTARTinstead of waiting indefinitely. If unresolved process-tree cleanup fills the supervisor's two live-generation slots, new requests fail with the existing restart envelope and unavailable notifications are warning-dropped until cleanup or reconnect. On POSIX, an already-gone process group counts as cleaned up rather than leaving a stale cleanup token. - If a workspace was built with
GRADLE_USER_HOME=/tmp/...or another isolated Gradle home, pass that path asgradleUserHomeso source, mapping, runtime, and project validation lookups use the same Loom cache instead of stale caches under the MCP process home. manage-cachereports corrupt Mojang binary-remap cache directories undercacheKinds: ["binary-remap"]withstatus: "corrupt", and can delete them byselector.artifactIdin preview/apply workflows.
Inspect Minecraft source from a version
{
"tool": "inspect-minecraft",
"arguments": {
"task": "class-source",
"subject": {
"kind": "class",
"className": "net.minecraft.server.Main",
"artifact": {
"type": "resolve-target",
"target": {
"kind": "version",
"value": "1.21.10"
}
}
}
}
}
Map or check a symbol
{
"tool": "analyze-symbol",
"arguments": {
"task": "map",
"subject": {
"kind": "method",
"owner": "net.minecraft.server.Main",
"name": "tickServer"
},
"version": "1.21.10",
"sourceMapping": "mojang",
"targetMapping": "intermediary",
"signatureMode": "name-only",
"detail": "standard"
}
}
Summarize a mod JAR
{
"tool": "analyze-mod",
"arguments": {
"task": "summary",
"subject": {
"kind": "jar",
"jarPath": "/path/to/mymod-1.0.0.jar"
}
}
}
Validate a workspace
{
"tool": "validate-project",
"arguments": {
"task": "project-summary",
"subject": {
"kind": "workspace",
"projectPath": "/workspace/modid",
"discover": ["mixins", "access-wideners", "access-transformers"]
},
"preferProjectVersion": true,
"preferProjectMapping": true
}
}
Workspace summaries still default to discovering mixins and access wideners. Add "access-transformers" to subject.discover when you want Access Transformer files included in the summary run.
Documentation
- Detailed example requests for copyable payloads and common workflows
- Tool and configuration reference for exact inputs, outputs, resource behavior, environment variables, and migration notes. Start with the Which Tool for Which Question decision table when you are not sure which tool to call.
- 日本語 README for a Japanese onboarding overview
Tool Surface
Start with these top-level workflow tools unless you already know the exact specialized operation you want. The lower-level tools remain available for narrow follow-up work and automation.
Top-Level Workflow Tools
| Tool | Purpose |
|---|---|
inspect-minecraft |
Inspect versions, artifacts, classes, files, source text, and workspace-aware lookup flows |
analyze-symbol |
Handle symbol existence checks, namespace mapping, lifecycle tracing, workspace symbol resolution, and API overviews |
compare-minecraft |
Compare version pairs, class diffs, registry diffs, and migration-oriented summaries |
analyze-mod |
Summarize mod metadata, decompile and search mod code, inspect class source, read class members from bytecode, and preview or apply remaps |
validate-project |
Summarize workspaces and run direct Mixin, Access Widener, or Access Transformer validation |
manage-cache |
List, verify, and preview or apply cache cleanup and rebuild operations |
Source Exploration
Tools for browsing Minecraft versions, resolving source artifacts, and reading or searching decompiled source code.
| Tool | Purpose |
|---|---|
list-versions |
List available Minecraft versions from Mojang metadata and local cache |
resolve-artifact |
Resolve source artifacts from versions, JAR paths, or Maven coordinates |
find-class |
Find simple or fully-qualified class names, including classes bundled in nested JARs |
get-class-source |
Read class source from an artifact or resolve the backing artifact on demand |
get-class-members |
List constructors, fields, and methods from bytecode |
search-class-source |
Search indexed class source by symbol, text, or path |
get-artifact-file |
Read a full source file with a byte limit |
list-artifact-files |
List indexed source file paths with cursor pagination |
index-artifact |
Rebuild indexed metadata for an existing artifact |
find-class accepts either an artifactId or the shared object target shape. For a workspace-relative dependency, pass target: { kind: "dependency", group, name, versionFromProject: true } with top-level projectPath. Fabric-style umbrella JARs are searched through their nested .class inventories; a top-level class match can then be passed to get-class-source or get-class-members, which resolve the containing nested JAR. Dotted inner-class matches are also readable through get-class-source. An empty result still means that the requested class name is absent from the resolved dependency version.
For unobfuscated releases such as 26.1+, mapping="mojang" uses the runtime/decompile path directly and skips Loom source-jar discovery, while intermediary and yarn fall back to obfuscated with a warning.
Version Comparison & Symbol Tracking
Tools for comparing class and registry changes across Minecraft versions and tracing symbol existence over time.
| Tool | Purpose |
|---|---|
trace-symbol-lifecycle |
Trace when Class.method exists across Minecraft versions |
diff-class-signatures |
Compare one class across two versions and return member deltas |
compare-versions |
Compare class and registry changes between two versions |
Mapping & Symbols
Tools for converting symbol names between namespaces and checking symbol existence.
| Tool | Purpose |
|---|---|
find-mapping |
Look up mapping candidates for class, field, or method symbols |
resolve-method-mapping-exact |
Strict shortcut for find-mapping (kind=method, signatureMode=exact); requires the full owner+name+descriptor triple |
get-class-api-matrix |
Show one class API across obfuscated, mojang, intermediary, and yarn |
resolve-workspace-symbol |
Resolve compile-visible symbol names from a Gradle workspace |
check-symbol-exists |
Check whether a class, field, or method exists in a namespace |
Expert and batch tools share the detail (summary | standard | full) + include[] response contract for shorter responses (replacing the old per-tool compact flag). See docs/tool-reference.md for per-tool defaults and the full field list.
NBT Utilities
Tools for decoding, patching, and encoding Java Edition NBT binary data using a typed JSON representation.
| Tool | Purpose |
|---|---|
nbt-to-json |
Decode Java Edition NBT binary payloads into typed JSON |
nbt-apply-json-patch |
Apply RFC 6902 patches to typed NBT JSON |
json-to-nbt |
Encode typed JSON back to Java Edition NBT binary |
Mod Analysis
Tools for extracting metadata from mod JARs, decompiling mod source, searching mod code, and remapping mod namespaces.
| Tool | Purpose |
|---|---|
analyze-mod-jar |
Extract mod metadata, dependencies, entrypoints, mixin config info, and packaged access transformer paths from a JAR |
decompile-mod-jar |
Decompile a mod JAR and optionally return one class source |
get-mod-class-source |
Read one class source from the decompiled mod cache |
search-mod-source |
Search decompiled mod source by class, method, field, or content |
remap-mod-jar |
Remap a Fabric or Quilt mod JAR to yarn or mojang names |
Validation
Tools for validating Mixin source, Access Widener files, and Forge/NeoForge Access Transformer files against a target Minecraft version. Workspace options let validation use loader/runtime context when a project path is available.
| Tool | Purpose |
|---|---|
validate-mixin |
Validate Mixin source against a target Minecraft version (returns validationStatus: "partial" with targetOutcomes when a stage budget defers work) |
validate-access-widener |
Validate Access Widener content against a target Minecraft version, optionally using runtime-aware Loom artifacts |
validate-access-transformer |
Validate Access Transformer content against a target Minecraft version, optionally using Forge/NeoForge runtime artifacts |
verify-mixin-target |
Single-call probe for owner / member existence with @Shadow / @Accessor / @Invoker advice |
Registry & Diagnostics
Tools for querying generated registry data and inspecting server runtime state.
| Tool | Purpose |
|---|---|
get-registry-data |
Read generated registry snapshots and optionally include entry data |
get-runtime-metrics |
Inspect runtime metrics and latency snapshots |
Batch Lookup
Tools that share one resolved artifact or Minecraft version across a fixed shortlist. Results include one status per item plus an aggregate summary. See Batch lookup contract for failure handling and retry mapping.
Within one MCP server process, batch class lookups that need the same binary fallback share one in-flight source indexing/decompile rebuild for that artifact.
| Tool | Purpose |
|---|---|
batch-class-source |
Read source for many classes against one shared resolved artifact (1..50 entries per call) |
batch-class-members |
List members for many classes against one shared resolved artifact (1..50 entries per call) |
batch-symbol-exists |
Probe symbol existence for many entries against one shared Minecraft-version artifact (workspace / version targets only) |
batch-mappings |
Translate many symbols across mapping namespaces with one shared Minecraft version (no shared artifact) |
Detailed parameter constraints, migration notes, resource behavior, and the full environment-variable matrix live in docs/tool-reference.md.
Development
Repository requirements:
- Node.js 22.13.0+
pnpm- Java when running remap or decompile flows locally
Setup and run the repository:
pnpm install
pnpm dev
Build the packaged shape:
pnpm build
pnpm start
Always run:
pnpm check
pnpm test
Run these when relevant:
pnpm test:file <path...>for focused ordinary suitespnpm test:grep <name-pattern>for recursive ordinary suites filtered by test namepnpm test:manual:stdio-smokefor MCP transport, registration, or manual workflow changespnpm test:manual:package-smokewhen checking packaged install and distribution behaviorpnpm test:perffor search, index, or performance-sensitive changespnpm test:coverageorpnpm test:coverage:lcovfor coverage checks (lines=80,branches=70,functions=80)pnpm validatefor the full local validation suite
Ordinary .test.ts files live in domain directories under tests/ (for example source-service/, entry-tools/, mapping/, mixin/, integration/mcp-tools/, contracts/, and utils/). Keep helper-only modules in tests/helpers; manual smoke, performance, resource, and smoke-only files remain in their existing special directories.
License
Reviews (0)
Sign in to leave a review.
Leave a reviewNo results found