.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/zinja-coder/apktool-mcp-server
home/mcp-servers/zinja-coder/apktool-mcp-server
zinja-coder avatar

apktool-mcp-server

byzinja-coder· 2 MCP servers

Installs

357

Stars

610

Forks

65

Category

Mobile Development

View on GitHub

TL;DR

⚡ Fully automated MCP server built on top of apktool to analyze Android APKs using LLMs like Claude — uncover vulnerabilities, parse manifests, and reverse engineer effortlessly.

How to install apktool-mcp-server?

zinja-coder/apktool-mcp-server
$git clone https://github.com/zinja-coder/apktool-mcp-server

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install apktool-mcp-server by running `git clone https://github.com/zinja-coder/apktool-mcp-server`, then use it for the current task and follow its documentation at https://github.com/zinja-coder/apktool-mcp-server.

Files · 1

View on GitHub
README.md
1<div align="center">
2 
3# apktool-mcp-server (Part of Zin's Reverse Engineering MCP Suite)
4 
5⚡ Fully automated MCP server built on top of apktool to analyze Android APKs using LLMs like Claude — uncover vulnerabilities, parse manifests, and reverse engineer effortlessly.
6 
7![GitHub contributors apktool-mcp-server](https://img.shields.io/github/contributors/zinja-coder/apktool-mcp-server)
8![GitHub all releases](https://img.shields.io/github/downloads/zinja-coder/apktool-mcp-server/total)
9![GitHub release (latest by SemVer)](https://img.shields.io/github/downloads/zinja-coder/apktool-mcp-server/latest/total)
10![Latest release](https://img.shields.io/github/release/zinja-coder/apktool-mcp-server.svg)
11![Python 3.10+](https://img.shields.io/badge/python-3%2E10%2B-blue)
12[![License](http://img.shields.io/:license-apache-blue.svg)](http://www.apache.org/licenses/LICENSE-2.0.html)
13 
14</div>
15 
16<!-- It is a still in early stage of development, so expects bugs, crashes and logical erros.-->
17 
18<div align="center">
19 <img alt="banner" height="480px" widht="620px" src="https://github.com/user-attachments/assets/eb9037f2-d1c7-45e0-8871-ca8aaade0dd0">
20</div>
21 
22<!--![apktool-mcp-server-banner.png](docs/assets/apktool-mcp-server-banner.png)-->
23 
24Image generated using AI tools.
25 
26---
27 
28## 🤖 What is apktool-mcp-server?
29 
30**apktool-mcp-server** is a MCP server for the [Apk Tool](https://github.com/iBotPeaches/apktool) that integrates directly with [Model Context Protocol (MCP)](https://github.com/anthropic/mcp) to provide **live reverse engineering support with LLMs like Claude**.
31 
32Think: "Decompile → Context-Aware Code Review → AI Recommendations" — all in real time.
33 
34Watch the demo!
35 
36https://github.com/user-attachments/assets/d50251b8-6b1c-4341-b18e-ae54eb24a847
37 
38- **Solving the CTFs**
39 
40 
41 
42https://github.com/user-attachments/assets/c783a604-a636-4e70-9fa8-37e3d219b20b
43 
44 
45## Other projects in Zin MCP Suite
46 - **[JADX-AI-MCP](https://github.com/zinja-coder/jadx-ai-mcp)**
47 - **[JADX-MCP-Server](https://github.com/zinja-coder/jadx-mcp-server)**
48 - **[ZIN-MCP-Client](https://github.com/zinja-coder/zin-mcp-client)**
49 
50## Current MCP Tools
51 
52The following MCP tools are available:
53 
54- `build_apk()` — Build an APK from a decoded APKTool Project.
55- `get_manifest()` — Get the AndroidManifest.xml content from a decoded APK project.
56- `get_apktool_yml()` — Get apktool.yml information from a decoded APK project.
57- `list_smali_directories()` — List all smali directories in a project.
58- `list_smali_files()` — List smali files in a specific smali directory, optinally filtered by package prefix.
59- `get_smali_file()` — Get content of a specific smali file by class name.
60- `modify_smali_file()` — Modify the content of a specific smali file.
61- `list_resources()` — List resources in a project, optionally filtered by resource type.
62- `get_resource_file()` — Get Content of a specific resource file.
63- `modify_resource_file()` — Modify the content of a specific resource file.
64- `search_in_file()` — Search for a pattern in files with specified extensions.
65- `clean_project()` — Clean a project directory to prepare for rebuilding.
66- `decode_apk()` — Decode an APK file using APKTool, extracting resources and smali code.
67 
68---
69 
70## 🗒️ Sample Prompts
71 
72 
73### 🔍 Basic Code Understanding
74 
75- “List all smali directories for the dvac project.”
76 
77- “Show me all the smali files under the package prefix com.vulnerable.component in the dvac project.”
78 
79- “Get the smali code for the class com.vulnerable.component.MainActivity.”
80 
81- “Compare MainActivity.smali with its previous version and show differences.”
82 
83- “Search for usage of startActivity in smali files of dvac project.”
84 
85### 🛡️ Vulnerability Detection
86 
87- “Analyze declared permissions in the dvac AndroidManifest.xml and flag dangerous ones.”
88 
89- “Search for hardcoded URLs or IPs in all .xml and .smali files in the project.”
90 
91- “Find all uses of PendingIntent.getActivity in smali files.”
92 
93- “Check for exported activities or receivers in dvac’s

Preview

zinja-coder/apktool-mcp-serverzinja-coder/apktool-mcp-server

# apktool-mcp-server (Part of Zin's Reverse Engineering MCP Suite)

⚡ Fully automated MCP server built on top of apktool to analyze Android APKs using LLMs like Claude — uncover vulnerabilities, parse manifests, and reverse engi

![GitHub contributors apktool-mcp-server](https://img.shields.io/github/contributors/zinja-coder/apktool-mcp-server)

Repozinja-coder/apktool-mcp-server
TypeMCP Servers
CategoryMobile Development
UpdatedJul 2026
LicenseApache-2.0
First seenJul 27, 2026

Tags

MCPaiandroid

Related

6 picks
Type
  1. callstack avataragent-deviceLet AI agents inspect, control, and debug real iOS, Android, desktop, and TV appsMCP ServersJul 2026517k3.7k
  2. getsentry avatarxcodebuildmcpXcodeBuildMCP provides tools for Xcode project management, simulator management, and app utilities.MCP ServersJul 2026341k6.2k
  3. mobile-next avatarmobile-mcpMCP server for iOS and Android Mobile Development, Automation and TestingMCP ServersJul 202679k5.7k
  4. minhalvp avatarandroid-mcp-serverAn MCP server for android automationMCP ServersMay 20251.7k789
  5. cursortouch avatarandroid-mcpLightweight MCP Server for Android Operating SystemMCP ServersJul 20261.7k782
  6. runablehq avatarmobile-mcpA MCP server to control your mobile devicesMCP ServersApr 202589665