The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the Jadx AI MCP listing page.
It is a still in early stage of development, so expects bugs, crashes and logical erros.
Standalone Plugin for JADX (Started as Fork) JADX with Model Context Protocol (MCP) integration for AI-powered static code analysis and real-time code review and reverse engineering tasks using Claude.
Image generated using AI tools.
JADX-AI is a modified version of the original JADX decompiler that integrates directly with Model Context Protocol (MCP) to provide live reverse engineering support with LLMs like Claude.
Think: "Decompile → Context-Aware Code Review → AI Recommendations" — all in real time.
Watch the demo!
It is combination of two tools:
JADX MCP Server is a standalone Python server that interacts with a modified version of jadx-gui (see: jadx-ai) via MCP (Model Context Protocol). It lets LLMs communicate with the decompiled Android app context live.
The following MCP tools are available:
fetch_current_class() — Get the class name and full source of selected classget_selected_text() — Get currently selected textget_all_classes() — List all classes in the projectget_class_source(class_name) — Get full source of a given classget_method_by_name(class_name, method_name) — Fetch a method’s sourcesearch_method_by_name(method_name) — Search method across classesget_methods_of_class(class_name) — List methods in a classget_fields_of_class(class_name) — List fields in a classget_method_code(class_name, method_name) — Alias for get_method_by_name //to be removedget_smali_of_class(class_name) — Fetch smali of class🔍 Basic Code Understanding
🛡️ Vulnerability Detection
🛠️ Reverse Engineering Helpers
📦 Static Analysis
🤖 AI Code Modification
📄 Documentation & Metadata
This is a developer beta — designed for reverse engineers, AI researchers, and LLM tool builders.

Make sure Claude Desktop is running with MCP enabled.
For instance, I have used following for Kali Linux: https://github.com/aaddrick/claude-desktop-debian
Configure and add MCP server to LLM file:
And following content in it:
Then, navigate code and interact via real-time code review prompts using the built-in integration.


hammer symbol and you should you see somthing like following:



This plugin allows total control over the GUI and internal project model to support deeper LLM integration, including:
Add Support for apktool
Add support for hermes code (ReactNative Application)
Add more useful MCP Tools
Make LLM be able to modify code on JADX
The files related to JADX-AI can be found under /jadx-ai/jadx-gui/src/main/java/jadx/gui/plugins/
The files related to jadx-mcp-server can be found here.
This project is a plugin for JADX, an amazing open-source Android decompiler created and maintained by @skylot. All core decompilation logic belongs to them. I have only extended it to support my MCP server with AI capabilities.
The original README.md from jadx is included here in this repository for reference and credit.
This MCP server is made possible by the extensibility of JADX-GUI and the amazing Android reverse engineering community.
Also huge thanks to @aaddrick for developing Claude desktop for Debian based linux.
This plugin inherits the Apache 2.0 License from the original JADX repository.
Disclaimer
The tools jadx-ai and jadx_mcp_server are intended strictly for educational, research, and ethical security assessment purposes. They are provided "as-is" without any warranties, expressed or implied. Users are solely responsible for ensuring that their use of these tools complies with all applicable laws, regulations, and ethical guidelines.
By using jadx-ai or jadx_mcp_server, you agree to use them only in environments you are authorized to test, such as applications you own or have explicit permission to analyze. Any misuse of these tools for unauthorized reverse engineering, infringement of intellectual property rights, or malicious activity is strictly prohibited.
The developers of jadx-ai and jadx_mcp_server shall not be held liable for any damage, data loss, legal consequences, or other consequences resulting from the use or misuse of these tools. Users assume full responsibility for their actions and any impact caused by their usage.
Use responsibly. Respect intellectual property. Follow ethical hacking practices.
Built with ❤️ for the reverse engineering and AI communities.