- Home
- MCP servers
- Jadx Daemon
Jadx Daemon
- python
4
GitHub Stars
python
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"wrlu-jadx-daemon-mcp": {
"command": "python3",
"args": [
"jadx-daemon-mcp/server.py"
],
"env": {
"JADX_DAEMON_MCP_HOST": "localhost"
}
}
}
}You run a Jadx Daemon MCP server to expose a Jadx-based daemon as an MCP endpoint you can connect to from MCP clients. It lets you interact with Jadx functionality through a standardized MCP interface, enabling automation, tooling, and integration with your build or development workflow.
How to use
To use the Jadx Daemon MCP server, start the local stdio server so your MCP client can communicate with it. The server runs a Python process and exposes an MCP endpoint via standard input/output. Once running, your MCP clients can request operations supported by the Jadx daemon, receive results, and propagate those results into your tooling pipelines.
How to install
Prerequisites you need before installing this MCP server:
-
Python 3.x installed on your system.
-
Access to the Jadx Daemon MCP code or package as described in the project setup.
Additional sections
Configuration for the Jadx Daemon MCP server is provided below. This config runs the server locally as a stdio process, using Python to execute the Jadx daemon entry point.
{
"mcpServers": {
"jadx": {
"disabled": false,
"timeout": 1800,
"type": "stdio",
"command": "python3",
"args": [
"jadx-daemon-mcp/server.py"
],
"env": {
"JADX_DAEMON_MCP_HOST": "localhost"
}
}
}
}