Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork38
MCP server for JADX-AI Plugin
License
zinja-coder/jadx-mcp-server
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
⚡ Fully automated MCP server built to communicate with JADX-AI-MCP Plugin to analyze Android APKs using LLMs like Claude — uncover vulnerabilities, parse manifests, and reverse engineer effortlessly.
Thanks to these wonderful people for their contributions ⭐
badmonkey7 | tainn | ljt270864457 | ZERO-A-ONE | neoz | SamadiPour | wuseluosi | CainYzb | tbodt | LikNick0101 | lwsinclair |
Download now:https://github.com/zinja-coder/jadx-ai-mcp/releases
JADX MCP Server is a standalone Python server that interacts with a modified version ofjadx-gui (see:jadx-ai-mcp) via MCP (Model Context Protocol). It lets LLMs communicate with the decompiled Android app context live.
JADX-AI-MCP is a plugin for theJADX decompiler that integrates directly withModel Context Protocol (MCP) to providelive reverse engineering support with LLMs like Claude.
Think: "Decompile → Context-Aware Code Review → AI Recommendations" — all in real time.
sequenceDiagramLLM CLIENT->>JADX MCP SERVER: INVOKE MCP TOOLJADX MCP SERVER->>JADX AI MCP PLUGIN: INVOKE HTTP REQUESTJADX AI MCP PLUGIN->>REQUEST HANDLERS: INVOKE HTTP REQUEST HANDLERREQUEST HANDLERS->>JADX GUI: PERFORM ACTION/GATHER DATAJADX GUI->>REQUEST HANDLERS: ACTION PERFORMED/DATA GATHEREDREQUEST HANDLERS->>JADX AI MCP PLUGIN: CRAFT HTTP RESPONSEJADX AI MCP PLUGIN->>JADX MCP SERVER:HTTP RESPONSEJADX MCP SERVER->>LLM CLIENT: MCP TOOL RESULTWatch the demos!
- Perform quick analysis
jadx-highlighted-code.mp4
- Quickly find vulnerabilities
jadx-manifest-demo.mp4
- Multiple AI Agents Support
jadx-cursor.mp4
- Analyze The APK Resources
jadx-v2.4.4.mp4
- Your AI Assistant during debugging of APK using JADX
adx-ai-mcp-debug-demo-1.2.mp4
It is combination of two tools:
- JADX-AI-MCP
- JADX MCP SERVER
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()— Get full source of a given classget_method_by_name()— Fetch a method’s sourcesearch_method_by_name()— Search method across classessearch_classes_by_keyword()— Search for classes whose source code contains a specific keyword (supports pagination)get_methods_of_class()— List methods in a classget_fields_of_class()— List fields in a classget_smali_of_class()— Fetch smali of classget_main_activity_class()— Fetch main activity from jadx mentioned in AndroidManifest.xml file.get_main_application_classes_code()— Fetch all the main application classes' code based on the package name defined in the AndroidManifest.xml.get_main_application_classes_names()— Fetch all the main application classes' names based on the package name defined in the AndroidManifest.xml.get_android_manifest()— Retrieve and return the AndroidManifest.xml content.get_strings(): Fetches the strings.xml fileget_all_resource_file_names(): Retrieve all resource files names that exists in applicationget_resource_file(): Retrieve resource file contentdebug_get_stack_frames(): Get the stack frames from jadx debuggerdebug_get_threads(): Get the insights of threads from jadx debuggerdebug_get_variables(): Get the variables from jadx debugger
🔍 Basic Code Understanding
"Explain what this class does in one paragraph.""Summarize the responsibilities of this method.""Is there any obfuscation in this class?""List all Android permissions this class might require."🛡️ Vulnerability Detection
"Are there any insecure API usages in this method?""Check this class for hardcoded secrets or credentials.""Does this method sanitize user input before using it?""What security vulnerabilities might be introduced by this code?"🛠️ Reverse Engineering Helpers
"Deobfuscate and rename the classes and methods to something readable.""Can you infer the original purpose of this smali method?""What libraries or SDKs does this class appear to be part of?"📦 Static Analysis
"List all network-related API calls in this class.""Identify file I/O operations and their potential risks.""Does this method leak device info or PII?"🤖 AI Code Modification
"Refactor this method to improve readability.""Add comments to this code explaining each step.""Rewrite this Java method in Python for analysis."📄 Documentation & Metadata
"Generate Javadoc-style comments for all methods.""What package or app component does this class likely belong to?""Can you identify the Android component type (Activity, Service, etc.)?"🐞 Debugger Assistant
"Fetch stack frames, varirables and threads from debugger and provide summary" "Based the stack frames from debugger, explain the execution flow of the application" "Based on the state of variables, is there security threat?"Demo:Perform Code Review to Find Vulnerabilities locally
zin-mcp-client-2.mp4
Add Support for apktool
Add support for hermes code (ReactNative Application)
Add docker support
Add more useful MCP Tools
Make LLM be able to modify code on JADX
Add prompts templates, give llm access to Android APK Files as Resources
Build MCP Client to support Local LLMEND-GOAL : Make all android reverse engineering and APK modification tools Connect with single MCP server to make reverse engineering apk files as easy as possible purely from vibes.
The files related to JADX-AI-MCP can be foundhere
The files related tojadx-mcp-server can be found in this repository only.
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.
And in last thanks to@anthropics for developing the Model Context Protocol and@FastMCP team
And all open source maintainers and contributors that makes libraries and dependencies which allows project like this possible.
Thank you Mseep.net for auditing and providing Assessment Badge.
This project uses following awesome libraries.
Plugin - Java
- Javalin -https://javalin.io/ - Apache 2.0 License
- SLF4J -https://slf4j.org/ - MIT License
- org.w3c.dom -https://mvnrepository.com/artifact/org.w3c.dom - W3C Software and Document License
MCP Server - Python
- FastMCP -https://github.com/jlowin/fastmcp - Apache 2.0 License
- httpx -https://www.python-httpx.org - BSD-3-Clause (“BSD licensed”)
This plugin inherits the Apache 2.0 License from the original JADX repository.
Disclaimer
The toolsjadx-ai-mcp andjadx_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 usingjadx-ai-mcp orjadx_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 ofjadx-ai-mcp andjadx_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.
- Found it useful? Give it a ⭐️
- Got ideas? Open anissue or submit a PR
- Built something on top? DM me or mention me — I’ll add it to the README!
Built with ❤️ for the reverse engineering and AI communities.
About
MCP server for JADX-AI Plugin
Topics
Resources
License
Code of conduct
Contributing
Security policy
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Releases
Sponsor this project
Uh oh!
There was an error while loading.Please reload this page.
Packages0
Uh oh!
There was an error while loading.Please reload this page.

