Java JAR Decompiler & Reverse Engineering MCP Server
Allows structuring decompiled Java sources into Maven projects and compiling them with Maven, including compilation error analysis.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Java JAR Decompiler & Reverse Engineering MCP ServerDecompile the target JAR and show me the best source code candidate."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Java JAR Decompiler & Reverse Engineering MCP Server
A production-ready Model Context Protocol (MCP) server written in Node.js for Java .jar package decompilation, multi-engine candidate benchmark evaluation, Maven project structuring, non-breaking syntax repair, GumTree Spoon AST analysis & obfuscation renaming, and ASM bytecode parity metrics evaluation.
๐ Table of Contents
Related MCP server: Java Inspector
1. Pipeline Architecture & Reverse Engineering Workflow
For every target Java .jar package, the MCP server executes a systematic 6-phase pipeline:
โโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโ
โ Phase 1: โ โ Phase 2: โ โ Phase 3: โ โ Phase 4: โ โ Phase 5: โ โ Phase 6: โ
โ Multi-Engine โโโโ>โ Quantitative โโโโ>โ Mavenization โโโโ>โ Non-Breaking โโโโ>โ AST De- โโโโ>โ ASM Bytecode โ
โ Decompilation โ โ Evaluation โ โ & Structure โ โ Syntax Repair โ โ Obfuscation โ โ Comparison โ
โโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโPhase 1: Multi-Engine Decompilation (
decompile_jar)Decompile target JAR using multiple engine variants (CFR 0.152, Vineflower 1.12.0, Fernflower, Procyon, JADX) into isolated output directories.
Phase 2: Comparative Candidate Evaluation (
evaluate_and_mavenize_sources)Test-compile each candidate output using
javac -g -parameters -proc:none -encoding UTF-8.Calculate quantitative quality score based on Java source count, compiler error count, remaining
.classfiles, and inline warning comments.
Phase 3: Maven Project Structuring (
evaluate_and_mavenize_sources)Copy winning candidate sources to
src/main/javaand resources tosrc/main/resources.Generate production-ready
pom.xmlwith source/target compliance and compiler args (-g -parameters).
Phase 4: Non-Breaking Syntax Repair (
compile_maven_project&fix_compilation_errors_prompt)Fix compilation errors reported in logs without modifying business logic (type casting, generic inference, sneaky throw casts, synthetic package-info artifacts).
Phase 5: AST Obfuscation Detection & Refactoring (
run_ast_deobfuscation_pipeline)Parse Abstract Syntax Tree using GumTree Spoon AST Diff (
gumtree-spoon-ast-diff-1.124.jar).Detect obfuscated/synthetic variable and method identifiers (
var0,var1,arg0, closure captures, single-letter variables).Apply context-aware, domain-accurate renames across files without altering functional behavior.
Re-compile and re-scan AST to confirm 0 obfuscations remain.
Phase 6: ASM Bytecode Parity & Metrics Analysis (
compare_bytecode_and_analyze)Perform ASM bytecode comparison against original JAR.
Record metrics: File/Bytecode Match %, Business Context Similarity %, and Code Readability Score in log reports.
2. Candidate Evaluation & Scoring Model
The evaluate_and_mavenize_sources tool selects the optimal decompiled candidate engine using a quantitative multi-factor scoring formula:
$$\text{Score} = (\text{JavaFiles} \times 100) - (\text{JavacErrors} \times 200) - (\text{RemainingClassFiles} \times 50) - (\text{DecompilerWarnings} \times 10)$$
Detailed Evaluation Criteria Breakdown:
Compilation Pass Rate under Debug Flags (Weight: -200 per error):
Each candidate is test-compiled using:
javac -g -parameters -proc:none -encoding UTF-8Rationale: Penalizes engines that emit invalid syntax, generic type inference failures, or broken lambdas. Zero compilation errors provides a massive score advantage.
AST Source Coverage (Weight: +100 per
.javafile):Counts total
.javasource files successfully reconstructed.Rationale: Rewards decompilers that fully reconstruct class structures, inner classes, and interface hierarchies without dropping files.
Unhandled Bytecode / Remaining
.classFiles (Weight: -50 per.classfile):Counts
.classbinary files left behind in output directory.Rationale: Severe penalty for decompiler engines that fail on complex bytecode constructs (e.g., Kotlin synthetic bridges, inner classes) and leave un-decompiled
.classfiles.
Inline Decompiler Warning Comments (Weight: -10 per warning):
Scans top 150 lines of every
.javafile for issue markers:// FAILED to decompile method ...// Could not decompile ...// Exception decompiling .../* Synthetic */
Rationale: Penalizes engines that emit partial method stubs or swallow exceptions inline.
3. Directory Structure
server/
โโโ bin/
โ โโโ cli.js # Executable CLI entry point for NPX / global execution
โโโ src/
โ โโโ index.js # Main MCP server initialization & handler registration
โ โโโ decompilerHandler.js # Core decompiler execution, Maven build, AST, & ASM engine
โ โโโ tools/
โ โ โโโ definitions.js # Structured MCP Tool declarations & JSON schemas (9 tools)
โ โโโ prompts/
โ โโโ definitions.js # Structured MCP Prompt declarations & templates (5 prompts)
โโโ scripts/ # Utility helper scripts
โโโ index.js # Forwarding entrypoint (imports src/index.js)
โโโ package.json # Package manifest & configuration
โโโ README.md # Server documentation4. Setup & Installation
Prerequisites
Node.js:
v18.0.0or higherJava Development Kit (JDK): JDK 8 / JDK 17 / JDK 24 (configured in
JAVA_HOMEor path)Apache Maven:
mvnCLI installed and available in environment path
Installation
cd server
npm install5. MCP Client Configurations
Claude Desktop Configuration
Add the server entry to your claude_desktop_config.json:
{
"mcpServers": {
"jar-decompiler": {
"command": "node",
"args": [
"C:/Users/ghosh/OneDrive/Desktop/Decompilation/server/index.js"
]
}
}
}Antigravity CLI / Gemini Config
Add the server entry to your .gemini/antigravity-cli/mcp_config.json:
{
"mcpServers": {
"jar-decompiler": {
"command": "node",
"args": [
"C:/Users/ghosh/OneDrive/Desktop/Decompilation/server/index.js"
]
}
}
}6. Complete MCP Tools Reference (9 Tools)
1. decompile_jar
Decompiles a Java .jar file into a target directory and returns comprehensive decompilation analytics, tree output, and logs.
Parameters:
jarPath(string, required): Path to.jarfile.outputDir(string, optional): Destination directory.decompilerPath(string, optional): Explicit path to decompiler.jar.decompilerType(string, optional):'auto','cfr','vineflower','fernflower','procyon','jadx', or'generic'.extraArgs(array of strings, optional): Additional command-line flags.
2. list_decompilers
Lists all Java decompiler files (.jar or executables) currently found in the decompiler/ folder.
Parameters:
decompilerDir(string, optional): Path to decompiler folder.
3. analyze_decompilation_output
Analyzes an existing directory containing decompiled source code to count Java files, detect decompilation warnings/errors, and produce a directory tree preview.
Parameters:
outputDir(string, required): Path to decompiled directory.
4. evaluate_and_mavenize_sources
Evaluates decompiled outputs (comparing AST structure, line count, compiler warning count), chooses the optimal candidate using the quantitative scoring model, and structures it into a clean Maven project with pom.xml.
Parameters:
outputsDir(string, required): Path to directory containing candidate folders (e.g.outputs/).targetMavenDir(string, required): Path to target directory (e.g.mavenized_merged_source/).groupId(string, optional): Maven groupId (default:org.apache.commons).artifactId(string, optional): Maven artifactId (default:commons-io).version(string, optional): Maven version (default:2.22.0).
5. compile_maven_project
Compiles a Maven project using mvn clean compile, parses compilation errors into a human-readable format, and writes the log file.
Parameters:
projectDir(string, required): Path to Maven project root.logPath(string, optional): Path for compilation error log file.
6. compare_bytecode_and_analyze
Performs ASM bytecode analysis comparing the original JAR against the recompiled mavenized source, outputting percentage match, business context similarity, and variable readability scores.
Parameters:
originalJarPath(string, optional): Path to original JAR.mavenDir(string, optional): Path to mavenized project root.logPath(string, optional): Path to output comparison report.asmJarPath(string, optional): Path to ASM library JAR.
7. generate_ast_and_detect_obfuscation
Uses GumTree Spoon AST Diff to parse Java source files, generate AST representations, and detect obfuscated or synthetic variable/method names (var0, arg1, single-letter variables, closure captures).
Parameters:
sourceDir(string, optional): Path to Java source directory.gumtreeJarPath(string, optional): Path to GumTree Spoon JAR.logPath(string, optional): Path to output obfuscation report.
8. rename_obfuscated_variables
Copies mavenized source to final output directory, applies obfuscated variable renames with meaningful names, adds changelog comments to modified files, and generates a comprehensive rename log. NEVER modifies business logic.
Parameters:
renames(array of objects, required): Array of{ file, oldName, newName, line }.sourceDir(string, optional): Source directory.targetDir(string, optional): Target output directory.logPath(string, optional): Output log file path.
9. run_ast_deobfuscation_pipeline
Runs the complete end-to-end AST de-obfuscation pipeline: copies mavenized_merged_source to mavenized_final_output, compiles, parses AST via GumTree Spoon to find obfuscated vars/methods, applies context-aware renames without changing business logic, verifies compilation, re-scans AST, and outputs logs to logs/ast_renamed_variables_methods.txt.
Parameters:
sourceDir(string, optional): Source directory.targetDir(string, optional): Target output directory.gumtreeJarPath(string, optional): GumTree Spoon JAR path.logPath(string, optional): Output report log file path.renames(array of objects, optional): Custom rename entries array.
7. Complete MCP Prompts Reference (5 Prompts)
1. evaluate_and_mavenize_prompt
System prompt for comparing decompiled AST outputs, selecting the optimal candidate with minimal code loss, and mavenizing it.
Arguments:
outputsDir,targetMavenDir
2. fix_compilation_errors_prompt
Mandatory system prompt for fixing Java compilation errors without modifying business logic (syntax, generic, and type-cast fixes only).
Arguments:
logFile,projectDir
3. compare_bytecode_prompt
System prompt for running ASM bytecode comparisons between the original JAR and recompiled mavenized project, calculating similarity metrics and debug readability scores.
Arguments:
originalJarPath,mavenDir,logPath
4. rename_obfuscated_variables_prompt
System prompt for AST-based detection and renaming of obfuscated/synthetic variable names in decompiled Java source, preserving all business logic.
Arguments:
sourceDir,targetDir,logPath
5. ast_deobfuscation_pipeline_prompt
Comprehensive system prompt for copying source to final output, compiling baseline, building GumTree Spoon AST, detecting obfuscated vars/methods, applying context-aware renames, verifying build success, and writing log files.
Arguments:
sourceDir,targetDir,logPath
8. Execution Verification
Run syntax checks across all server modules:
node --check index.js; node --check src/index.js; node --check src/decompilerHandler.js; node --check src/tools/definitions.js; node --check src/prompts/definitions.js; node --check bin/cli.jsExpected Output: Exit code 0 (clean pass).
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityBmaintenanceEnables AI tools to analyze Java dependencies by scanning Maven projects, decompiling JAR files, and extracting detailed class information including methods, fields, and inheritance relationships. Solves the problem of AI hallucinations when generating code that calls external dependencies by providing accurate class structures through decompilation.32441Apache 2.0
- AlicenseAqualityAmaintenanceDecompiles Maven dependencies into readable Java source directly inside your AI agent.5101Apache 2.0
- AlicenseAqualityFmaintenanceDecompiles Java .class files, packages, and JARs into readable source code, enabling AI assistants to inspect Java bytecode.36420ISC
- Alicense-qualityCmaintenanceEnables AI assistants to look up Java class definitions and list dependencies from Maven projects by analyzing local JAR files via the Model Context Protocol.114MIT
Related MCP Connectors
Enterprise code intelligence for M&A, security audits, and tech debt. Hosted server with 200k free.
Behavioral oracle for Rust crate APIs: runtime behavior, yank/advisory, deprecation, sig search
Third-party sandbox verdict on any artifact in one call, no account. Also an agent marketplace.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/sapyyy/reverse-engineering-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server