Jebmcp

v1.0.0Securitystable

MCP server for jebmcp

jebjeb-python-scriptsmcpmcp-serverreverse-engineering
Share:
236
Stars
0
Downloads
0
Weekly
0/5

What is Jebmcp?

Jebmcp is a Model Context Protocol (MCP) server that allows AI assistants like Claude, Cursor, and VS Code to mcp server for jebmcp

MCP server for jebmcp

This server falls under the Security category on MCPgee, the world's largest MCP server directory with 33,000+ servers.

Features

  • MCP server for jebmcp

Use Cases

Leverage Jeb decompiler capabilities for reverse engineering.
Analyze and study binary code structures.
Support security analysis and code investigation workflows.
flankerhqd

Maintainer

LicenseMIT
Languagepython
Versionv1.0.0
UpdatedMay 18, 2026
Statushealthy
Maintenanceactive

Works with

ClaudeOpenAIwindowsmacoslinux

Installation

Manual Installation

npx jebmcp

Configuration

Configuration Details

Config File

claude_desktop_config.json

Performance

Response Metrics

Response Time< 200ms
ThroughputMedium

Resource Usage

Memory UsageLow
CPU UsageLow

How to Set Up and Use Jebmcp

jebmcp is a Python MCP server and JEB Pro plugin that exposes JEB decompiler capabilities to AI coding assistants such as Cline, Cursor, and RooCode. It starts an HTTP server inside a running JEB Pro session and lets AI tools call functions to decompile classes, retrieve methods, inspect exported Android activities, follow call graphs, and rename identifiers — enabling AI-assisted reverse engineering of APK binaries without manually copying decompiled code. Security researchers and mobile app analysts use it to automate the repetitive parts of APK analysis and vulnerability discovery.

Prerequisites

  • JEB Pro installed (a commercial Android reverse engineering tool from PNFSoft)
  • Python 3.11 or higher
  • uv package manager (https://docs.astral.sh/uv/getting-started/installation/)
  • An MCP-capable AI coding client: Cline, Cursor, or RooCode (VS Code extension)
  • The APK or binary you want to analyze opened in JEB Pro
1

Clone the repository

Clone the jebmcp repository which contains both the JEB Python script (MCP.py) and the Python MCP server.

git clone https://github.com/flankerhqd/jebmcp.git
cd jebmcp
2

Copy the JEB plugin script into JEB's scripts directory

Copy src/jeb_mcp/MCP.py into your JEB installation's scripts directory. The Jython file must also be present in that directory.

cp src/jeb_mcp/MCP.py $JEB_INSTALLATION_DIR/scripts/
3

Start the plugin in JEB Pro

In JEB Pro, open File > Scripts > Scripts Selector, locate MCP.py in the list, and run it. The JEB logger window should show that the MCP server started on port 16161.

4

Verify the server is running

After starting the script you should see these three lines in the JEB logger output confirming the server is ready.

[MCP] Plugin loaded
[MCP] Plugin running
[MCP] Server started at http://127.0.0.1:16161
5

Configure your MCP client (RooCode example)

Open the RooCode MCP settings in VS Code (click the RooCode icon > ... > Edit Project MCP), which creates .roo/mcp.json. Add the server configuration pointing to server.py via uv.

{
  "mcpServers": {
    "jeb": {
      "command": "uv",
      "args": ["--directory", "jeb-mcp/src/jeb_mcp", "run", "server.py"],
      "timeout": 1800
    }
  }
}
6

Connect and begin analysis

Ask your AI assistant to connect to JEB MCP and start analyzing the APK open in JEB Pro. The assistant can then call tools to decompile classes, trace call graphs, and rename identifiers.

Jebmcp Examples

RooCode MCP configuration with full auto-approve list

Complete .roo/mcp.json configuration including the full autoApprove list for uninterrupted analysis sessions.

{
  "mcpServers": {
    "jeb": {
      "command": "uv",
      "args": ["--directory", "jeb-mcp/src/jeb_mcp", "run", "server.py"],
      "timeout": 1800,
      "disabled": false,
      "autoApprove": [
        "ping",
        "check_connection",
        "get_manifest",
        "get_class_decompiled_code",
        "get_method_decompiled_code",
        "get_method_callers",
        "get_method_overrides",
        "get_superclass",
        "get_interfaces",
        "get_class_methods",
        "get_class_fields",
        "rename_class_name",
        "rename_method_name",
        "rename_field_name"
      ]
    }
  }
}

Prompts to try

Example analysis prompts modeled on the demo workflow shown in the README.

- "Connect to JEB MCP and retrieve the AndroidManifest.xml"
- "Decompile Lnet/example/MainActivity; and explain what it does"
- "List all exported activities in this APK"
- "Get all callers of the method Lnet/example/Utils;->encrypt and trace the data flow"
- "Rename all methods with names shorter than 3 characters in Lnet/example/Crypto; to descriptive names based on their logic"

Troubleshooting Jebmcp

MCP server does not start — no output in JEB logger after running MCP.py

Ensure the MCP.py file is in JEB's scripts directory AND that the Jython runtime file is also present in the same directory. Restart JEB Pro after copying the files, then try running the script again from File > Scripts > Scripts Selector.

uv run server.py fails with module not found errors

Run 'uv sync' inside the jeb-mcp directory to install the Python dependencies defined in pyproject.toml before starting the server. Ensure Python 3.11+ is available on your PATH.

AI assistant connects but get_class_decompiled_code returns empty results

The server connects to JEB via localhost:16161. Ensure JEB Pro is still running with the MCP.py script active (it stops if you close the script). Also verify the class name uses JVM descriptor format: Lpackage/name/ClassName; including the trailing semicolon.

Frequently Asked Questions about Jebmcp

What is Jebmcp?

Jebmcp is a Model Context Protocol (MCP) server that mcp server for jebmcp It connects AI assistants to external tools and data sources through a standardized interface.

How do I install Jebmcp?

Follow the installation instructions on the Jebmcp GitHub repository. Clone the repo, install dependencies, and add the server config to your AI client.

Which AI clients work with Jebmcp?

Jebmcp works with all major MCP-compatible AI clients including Claude Desktop, Claude Code, Cursor, VS Code (GitHub Copilot), Windsurf, and Cline.

Is Jebmcp free to use?

Yes, Jebmcp is open source and available under the MIT license. You can use it freely in both personal and commercial projects.

Jebmcp Alternatives — Similar Security Servers

Looking for alternatives to Jebmcp? Here are other popular security servers you can use with Claude, Cursor, and VS Code.

Casdoor

13.6k

An open-source Agent-first Identity and Access Management (IAM) /LLM MCP & agent gateway and auth server with web UI supporting OpenClaw, MCP, OAuth, OIDC, SAML, CAS, LDAP, SCIM, WebAuthn, TOTP, MFA, Face ID, Google Workspace, Azure AD

ghidraMCP

9.0k

An Model Context Protocol server that enables LLMs to autonomously reverse engineer applications by exposing Ghidra's decompilation and analysis tools. It allows AI agents to list code structures, rename methods, and analyze binaries directly through

HexStrike AI

8.9k

HexStrike AI MCP Agents is an advanced MCP server that lets AI agents (Claude, GPT, Copilot, etc.) autonomously run 150+ cybersecurity tools for automated pentesting, vulnerability discovery, bug bounty automation, and security research. Seamlessly b

IDA Pro MCP

8.7k

Enables AI-assisted reverse engineering in IDA Pro by providing tools to analyze binaries, decompile functions, manage comments, search patterns, and interact with the IDA database through natural language.

Anthropic Cybersecurity Skills

6.6k

754 structured cybersecurity skills for AI agents · Mapped to 5 frameworks: MITRE ATT&CK, NIST CSF 2.0, MITRE ATLAS, D3FEND & NIST AI RMF · agentskills.io standard · Works with Claude Code, GitHub Copilot, Codex CLI, Cursor, Gemini CLI & 20+ platform

Hooker

5.1k

🔥🔥 hooker is a Frida-based reverse engineering toolkit for Android. It offers a user-friendly CLI, universal scripts, auto hook generation, memory roaming to detect activities/services, one-click SOCKS5 proxy setup, Frida JustTrustMe, and BoringSSL u

Browse More Security MCP Servers

Explore all security servers available in the MCPgee directory. Each server includes setup guides for Claude, Cursor, and VS Code.

Quick Config Preview

{ "mcpServers": { "jebmcp": { "command": "npx", "args": ["-y", "jebmcp"] } } }

Add this to your claude_desktop_config.json or .cursor/mcp.json

Read the full setup guide →

Ready to use Jebmcp?

Browse our complete directory of 33,000+ MCP servers, read setup guides for your editor, and start building with the Model Context Protocol.

33,000+ ServersFree & Open SourceStep-by-Step Guides