Enterprise-grade Android remote control platform combining automation, reverse engineering, MITM capture, and AI Agent. 6+ years of continuous iteration, running stably on 83,000+ devices.
FIRERPA is the superset of Android tooling - automation, reverse engineering, and testing unified.
Remote Desktop
Browser-based real-time remote desktop with H.264/MJPEG encoding, touch controls, file transfer, clipboard sharing, and root terminal.
UI Automation
Powerful selector system supporting text, resourceId, description and more. Layout inspector, element traversal for effortless automation scripting.
MITM Capture
One-click global MITM with auto certificate and proxy setup. Real-time modification, per-app capture, upstream proxy for international capture. Seamless on Android 6-16.
Frida Integration
Built-in latest Frida with enhanced stealth patches. Hook RPC, data reporting (MQTT/AMQP), persistent scripts, spawn mode injection.
AI Agent / MCP
Built-in MCP server protocol and OpenAI tool-call support. Drive device operations with natural language. Works with Claude, Cursor, and any compatible client.
Network Management
HTTP/SOCKS5/Shadowsocks proxy, OpenVPN networking, Frp distributed deployment. Device can serve as a mobile proxy server.
OCR & Image Matching
Built-in OCR engine with SIFT feature/template matching. Supports PaddleOCR, EasyOCR for gaming and non-layout scenarios.
Security & Reversing
Certificate authentication, API locking, script encryption, SELinux support. Binary patching, encrypted DB reading (WeChat, WeCom, Alibaba).
On-Device AI
Built-in TFLite inference engine for on-device AI model inference. Model extension API for easy custom AI integration.
Easy to Use
A Few Lines, Full Control
Clean Python API to get you started quickly
automation.py
from lamda.client import *
d = Device("192.168.0.2")
# Launch app
d.launch_app("com.example.app")
# Click by selector
d(text="Login").click()
d(resourceId="com.example:id/input").set_text("hello")
# Screenshot
d.screenshot().save("screen.png")