Mira

v1.0.0โ€ขSecurityโ€ขstable

๐Ÿ”ฌ Mobile runtime detection workbench for AI (iOS and Android)

android-security-toolsfridafrida-gadgetfrida-scriptios-security-tool
Share:
60
Stars
0
Downloads
0
Weekly
0/5

What is Mira?

Mira is a Model Context Protocol (MCP) server that allows AI assistants like Claude, Cursor, and VS Code to ๐Ÿ”ฌ mobile runtime detection workbench for ai (ios and android)

๐Ÿ”ฌ Mobile runtime detection workbench for AI (iOS and Android)

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

Features

  • ๐Ÿ”ฌ Mobile runtime detection workbench for AI (iOS and Android

Use Cases

Detect mobile runtime behavior on iOS and Android via AI.
Perform security testing on mobile apps.
Analyze app behavior using Frida instrumentation.
vwww-droid

Maintainer

LicenseGPL-3.0
Languagec
Versionv1.0.0
UpdatedMay 22, 2026
Statushealthy
Maintenanceactive

Works with

ClaudeOpenAIwindowsmacoslinux

Installation

Manual Installation

npx mira

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 Mira

Mira is a mobile runtime detection workbench that bridges AI assistants to live iOS and Android devices via a relay server architecture. It uses Frida instrumentation to enable remote shell access, runtime inspection, native code execution verification, and LSPosed trace construction โ€” all orchestrated through MCP tools. Security researchers and mobile reverse engineers use Mira to investigate app behavior, detect jailbreak/root evasion logic, and run Frida scripts interactively through an AI chat interface.

Prerequisites

  • Python 3.9+ installed on the host machine running the relay and MCP servers
  • Frida installed on the target device (Android APK from Releases, or iOS 16.7.10+ setup per docs)
  • Network connectivity between host and target device (same LAN or VPN)
  • An MCP client such as Claude Desktop configured to connect to the MCP server
  • Basic familiarity with mobile security testing and Frida instrumentation
1

Clone the Mira repository

Clone the Mira repository from GitHub to your local machine where the relay and MCP servers will run.

git clone https://github.com/vwww-droid/Mira.git
cd Mira
2

Install Python dependencies

Install the required Python packages for both the relay server and MCP server components.

pip install -r requirements.txt
3

Start the relay server

Launch the relay server on your host machine. Replace <your-lan-ip> with your machine's actual LAN IP address so mobile devices on the same network can connect.

PYTHONPATH=. python3 -m mira.relay.server --host 0.0.0.0 --port 8765 --advertise-url http://<your-lan-ip>:8765
4

Connect your mobile device

For Android: download the Mira APK from the GitHub Releases page, install it on your device, and connect it to http://<your-lan-ip>:8765. For iOS: follow the setup guide in docs/GETTING-STARTED.md for real device setup on iOS 16.7.10+.

5

Start the MCP server

Launch the MCP server pointing it at the running relay instance. This is the process your MCP client will connect to.

PYTHONPATH=. python3 -m mira.mcp.server --relay http://127.0.0.1:8765
6

Configure your MCP client

Add Mira to your MCP client configuration. The MCP server communicates over stdio, so point the client at the Python module launch command.

{
  "mcpServers": {
    "mira": {
      "command": "python3",
      "args": ["-m", "mira.mcp.server", "--relay", "http://127.0.0.1:8765"],
      "env": {
        "PYTHONPATH": "/path/to/Mira"
      }
    }
  }
}

Mira Examples

Client configuration

Claude Desktop config entry for the Mira MCP server. Update the args path to where you cloned the repo.

{
  "mcpServers": {
    "mira": {
      "command": "python3",
      "args": ["-m", "mira.mcp.server", "--relay", "http://127.0.0.1:8765"],
      "env": {
        "PYTHONPATH": "/Users/you/Mira"
      }
    }
  }
}

Prompts to try

Example prompts to use with Mira once a device is connected to the relay.

- "List all running processes on the connected Android device"
- "Run a Frida script to hook the isRooted() method in com.example.app and print its return value"
- "Check if the app at package name com.example.bank is using SSL pinning"
- "Open a PTY shell on the connected device and list files in /data/data/com.example.app"
- "Trace all calls to JNI methods in com.example.app using LSPosed"

Troubleshooting Mira

Device does not appear connected in the relay after installing the Mira app

Ensure both the host machine and mobile device are on the same LAN. Verify the --advertise-url IP matches your host's actual LAN IP (not 127.0.0.1). Check that port 8765 is not blocked by a firewall.

PYTHONPATH error when starting the relay or MCP server

Always prefix commands with PYTHONPATH=. when running from inside the cloned Mira directory. Alternatively set PYTHONPATH to the absolute path of the Mira directory in the MCP client env config.

Frida script execution fails with 'unable to attach to process'

Ensure Frida Server is running on the mobile device with appropriate privileges (root on Android). On iOS, verify the device is jailbroken and Frida is installed via Cydia/Sileo. Check that the target app is running before attempting to attach.

Frequently Asked Questions about Mira

What is Mira?

Mira is a Model Context Protocol (MCP) server that ๐Ÿ”ฌ mobile runtime detection workbench for ai (ios and android) It connects AI assistants to external tools and data sources through a standardized interface.

How do I install Mira?

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

Which AI clients work with Mira?

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

Is Mira free to use?

Yes, Mira is open source and available under the GPL-3.0 license. You can use it freely in both personal and commercial projects.

Mira Alternatives โ€” Similar Security Servers

Looking for alternatives to Mira? 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": { "mira": { "command": "npx", "args": ["-y", "mira"] } } }

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

Read the full setup guide โ†’

Ready to use Mira?

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