loading…
Search for a command to run...
loading…
ExecBro — MCP server giving AI agents eyes and hands into React Native apps. Logs, REPL, state inspection, tap, screenshot.
ExecBro — MCP server giving AI agents eyes and hands into React Native apps. Logs, REPL, state inspection, tap, screenshot.
[!IMPORTANT] Already using ExecBro?
npxcaches packages indefinitely, so you may be stuck on an old version without realizing it. Update your MCP config to usenpx -y react-native-ai-devtools@latest(see Setup) so every session pulls the latest release with new tools and bug fixes. New installs after this change auto-update automatically.
Ships as the npm package
react-native-ai-devtools.
Give your AI assistant eyes and hands into your running React Native app. Like Chrome DevTools — but for AI agents.
Build, debug, and verify features end-to-end — without leaving the chat.
ExecBro is the runtime bridge between your AI coding assistant and your running React Native app — exposing MCP tools to read logs and network, inspect component state, capture screenshots, tap the UI, and run JS. Zero config, no SDK or code changes required — an optional SDK unlocks richer log and network capture when you want it.
Please run this at the end of your session to help me make the tools better. ExecBro is built for AI agents, so the most valuable feedback comes from the agent itself — paste this prompt to your agent:
Write a report about your experience with the ExecBro tools — where you were struggling and what could be improved. Save it as a Markdown file for me, then submit it using the
send_feedbacktool (type"feedback") so it becomes a GitHub issue.
It takes 30 seconds: your agent runs send_feedback, hands you a pre-filled GitHub issue URL (environment info already attached), and you click submit — no GitHub setup, no copy-pasting. Real friction logs from real sessions are what shape the roadmap and get fixed first, so please send one. 🙏 And if you just have a quick idea or question, drop into GitHub Discussions to share feedback, request features, and vote on what gets built next.
ExecBro is free and open — every feature, no usage limits, no account required. Use it as much as you like. The tools you run locally stay free; that's the model.
console.log, warn, error, info, debug with filtering and search. Note: on a cold start (first app launch), logs emitted before the MCP server connects are missed — subsequent reloads capture everything. Install the optional SDK to buffer logs from the very first line of app startuptap tool with automatic fallback chain: fiber tree → accessibility → OCR → coordinates. Auto-detects platform, accepts pixels from screenshots. Returns post-tap screenshot and verifies visual change by defaultswipe tool that auto-routes to iOS or Android based on the connected device. Accepts screenshot pixel coordinates, handles per-platform conversion, and returns a verification.meaningful signal so agents detect end-of-list, non-scrollable surfaces, and missed coordinates. Essential for scrolling virtualized lists (FlatList/SectionList) where off-screen items aren't in the fiber treeclear_focused_input and dismiss_keyboard operate on whatever has focus, and ios_input_text / android_input_text accept replace:true to overwrite pre-filled values — all three update React state through onChangeText so controlled components (Formik, react-hook-form, useState) stay consistentscan_metro automatically discovers and connects to all Bridgeless targets on each Metro portdevice parameter for targeting specific devices by name (case-insensitive substring match)No installation required — every client below uses npx to fetch the latest version on demand. Pick your agent:
After adding the server, fully restart the client (quit and relaunch, not just reload) so it picks up the new configuration.
# Global (all projects)
claude mcp add execbro --scope user -- npx -y react-native-ai-devtools@latest
# Project-specific
claude mcp add execbro --scope project -- npx -y react-native-ai-devtools@latest
Or edit ~/.claude.json (user) / .mcp.json (project) manually:
{
"mcpServers": {
"execbro": {
"type": "stdio",
"command": "npx",
"args": ["-y", "react-native-ai-devtools@latest"]
}
}
}
Edit the config at:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.json{
"mcpServers": {
"execbro": {
"command": "npx",
"args": ["-y", "react-native-ai-devtools@latest"]
}
}
}
You can also open this file from Settings → Developer → Edit Config. Fully quit and relaunch Claude Desktop after saving.
codex mcp add execbro -- npx -y react-native-ai-devtools@latest
Or edit ~/.codex/config.toml directly:
[mcp_servers.execbro]
command = "npx"
args = ["-y", "react-native-ai-devtools@latest"]
Docs. Add via Cmd+Shift+P → "View: Open MCP Settings", or edit .cursor/mcp.json (project) / ~/.cursor/mcp.json (global):
{
"mcpServers": {
"execbro": {
"command": "npx",
"args": ["-y", "react-native-ai-devtools@latest"]
}
}
}
Requires VS Code 1.102+ with Copilot (docs). Add via Cmd+Shift+P → "MCP: Add Server", or edit .vscode/mcp.json:
{
"servers": {
"execbro": {
"type": "stdio",
"command": "npx",
"args": ["-y", "react-native-ai-devtools@latest"]
}
}
}
Docs. Edit ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"execbro": {
"command": "npx",
"args": ["-y", "react-native-ai-devtools@latest"]
}
}
}
Docs. Open the Agent Panel settings → "Add Custom Server", or add to settings.json:
{
"context_servers": {
"execbro": {
"command": "npx",
"args": ["-y", "react-native-ai-devtools@latest"],
"env": {}
}
}
}
Edit ~/.gemini/settings.json (user) or .gemini/settings.json (project):
{
"mcpServers": {
"execbro": {
"command": "npx",
"args": ["-y", "react-native-ai-devtools@latest"]
}
}
}
Android works out of the box — all device control tools use ADB, which ships with Android Studio. Verify it's available:
adb devices
iOS UI automation tools (tap, swipe, text input, accessibility queries) require a UI driver. Install one of the following:
Option A: AXe CLI (default)
AXe is a standalone CLI for iOS simulator automation. No daemon required — single binary, simple setup. Used by default; no IOS_DRIVER env var needed.
brew install cameroncooke/axe/axe
Verify: axe --version
Note: AXe text input only supports US keyboard layout characters.
Option B: IDB (alternative)
IDB (iOS Development Bridge) is a tool built by Meta for automating iOS Simulators. Requires a background daemon. Use this if you prefer IDB or hit AXe limitations.
brew install idb-companion
Verify: idb_companion --list 1
Opt in by setting IOS_DRIVER=idb in your MCP server configuration:
{
"mcpServers": {
"execbro": {
"type": "stdio",
"command": "npx",
"args": ["-y", "react-native-ai-devtools@latest"],
"env": { "IOS_DRIVER": "idb" }
}
}
}
What works without a UI driver:
| Capability | Without AXe/IDB | With AXe/IDB |
|---|---|---|
| Screenshots | Yes (simctl) | Yes |
| App install/launch/terminate | Yes (simctl) | Yes |
| URL opening | Yes (simctl) | Yes |
| Boot simulator | Yes (simctl) | Yes |
| Tap / swipe / gestures | No | Yes |
| Text input | No | Yes |
| Accessibility tree queries | No | Yes |
| Element finding / waiting | No | Yes |
| Hardware buttons (Home, Lock) | No | Yes |
Troubleshooting: If you see errors like
"IDB is not installed"or"AXe is not installed"in tap results, install the appropriate driver with the commands above and retry.
brew install cameroncooke/axe/axe, default) or Facebook IDB (brew install idb-companion, opt in via IOS_DRIVER=idb) — required for tap, swipe, text input, accessibility on iOS SimulatorPre-built skills for common debugging workflows — session setup, log inspection, network debugging, and more. See the skills guide for the full list and installation instructions.
See the full tool reference for all tools with descriptions. Key tools:
| Tool | Description |
|---|---|
scan_metro |
Start here — scan for Metro servers and auto-connect |
get_logs / search_logs |
Capture and search console logs with filtering and summaries |
get_network_requests |
Monitor HTTP requests with method/status filtering |
get_screen_layout |
Screen map of visible components with positions, sizes, and text content |
tap |
Unified tap — auto-detects platform, tries fiber → accessibility → OCR → coordinates |
ios_input_text / android_input_text |
Type text into the focused field. replace:true clears pre-filled values first (Fabric) |
clear_focused_input |
Clear the focused TextInput via React onChangeText, keeping controlled state in sync |
dismiss_keyboard |
Blur the focused input and close the on-screen keyboard |
execute_in_app |
Run JS expressions in the app runtime (REPL-style) |
ios_screenshot / android_screenshot |
Take device screenshots |
Start your React Native app:
npm start
# or
expo start
In Claude Code, scan for Metro:
Use scan_metro to find and connect to Metro
Get logs:
Use get_logs to see recent console output
| Guide | Description |
|---|---|
| Console Logging | get_logs parameters, filtering, summary mode, TONL format, token optimization |
| Network Tracking | SDK setup for full capture, filtering, request details, statistics |
| App Inspection | Debug globals (Apollo, Redux, Expo Router), execute_in_app, limitations |
| Layout & Component Inspection | get_screen_layout, component tree, inspect_at_point, find_components |
| Device Interaction | Unified tap, platform-specific gestures, text input, key events |
| OCR Text Extraction | Cloud Vision OCR, offline fallback, language config, workflows |
| Claude Code Skills | Pre-built skills for session setup, debugging, and automation |
| Full Tool Reference | Complete list of all 40+ tools with descriptions |
| Version | Architecture | Engine | Status |
|---|---|---|---|
| Expo SDK 54+ | Bridgeless (New Arch) | Hermes | ✓ Fully supported |
| RN 0.76+ | Bridgeless (New Arch) | Hermes | ✓ Fully supported |
| RN 0.73 - 0.75 | Bridge (Old Arch) | Hermes | ✓ Fully supported (best network capture via CDP) |
| RN 0.70 - 0.72 | Bridge (Old Arch) | Hermes / JSC | ✓ Supported |
| RN < 0.70 | Bridge | JSC | Not tested |
/json endpointRuntime.enable to receive Runtime.consoleAPICalled eventsRuntime.evaluate — captures all requests from startup with full headers and bodies, including cold-start events that CDP would missNetwork.enable (on supported targets) or injects a JS fetch interceptor as fallback. On cold start, events emitted before the CDP connection is established are lost; subsequent reloads capture everythingThe server does not auto-connect on startup. Call scan_metro to discover and connect to Metro servers. This prevents multiple MCP server instances (from parallel agent sessions) from competing for the single CDP WebSocket slot, which would cause connection thrashing and dropped tools.
When the MCP server process is terminated (SIGINT/SIGTERM), it closes all CDP WebSocket connections and cancels reconnection timers, freeing the CDP slot immediately for other sessions.
When the connection to Metro is lost (e.g., app restart, Metro restart, or network issues):
If there was a recent disconnect, get_logs and get_network_requests will include a warning:
[WARNING] Connection was restored 5s ago. Some logs may have been missed during the 3s gap.
Use get_connection_status to see detailed connection information:
=== Connection Status ===
--- React Native (Port 8081) ---
Status: CONNECTED
Connected since: 2:45:30 PM
Uptime: 5m 23s
Recent gaps: 1
- 2:43:15 PM (2s): Connection closed
npm start)The server prioritizes devices in this order:
clear_logs then trigger some actions in the appget_apps to verify connection statusreload_app — the subsequent reload captures everything from the beginning because the connection is already in place. To capture startup events on every launch, install the optional SDKThis package collects anonymous usage telemetry to help improve the product. No personal information is collected.
| Data | Purpose |
|---|---|
| Tool names | Which MCP tools are used most |
| Success/failure | Error rates for reliability improvements |
| Duration (ms) | Performance monitoring |
| Session start/end | Retention analysis |
| Platform | macOS/Linux/Windows distribution |
| Server version | Adoption of new versions |
Not collected: No file paths, code content, network data, or personally identifiable information.
On first tool use, the package automatically registers your installation with our backend. No account or login is required — the Tool works fully out of the box.
Why we do this: The product roadmap includes features that build on installation identity — project memory (your AI assistant gets smarter with every session by remembering navigation maps, element signatures, and debug patterns), cloud sync across machines, team collaboration with shared debugging context, and a dashboard for managing your installations. Auto-registration lays the groundwork so these features work seamlessly when they ship, without requiring a disruptive setup step later.
What is sent:
What is NOT sent: No source code, file paths, console logs, network data, component names, or any content from your app. The fingerprint exists solely to prevent installation hijacking — it ties your installation to your physical machine so no one else can claim it.
Registration is fire-and-forget — it never blocks your work, fails silently if the network is unavailable, and can be disabled entirely (see Opt-out below). See PRIVACY.md for full details on data handling, storage, and your rights.
To disable telemetry and auto-registration, add RN_DEBUGGER_TELEMETRY to the env field in your MCP server configuration:
{
"mcpServers": {
"execbro": {
"type": "stdio",
"command": "npx",
"args": ["-y", "react-native-ai-devtools@latest"],
"env": { "RN_DEBUGGER_TELEMETRY": "false" }
}
}
}
All debugging tools work normally with telemetry disabled. For the complete privacy policy, see PRIVACY.md.
When the tap tool fails or produces no visible change on screen, the package uploads a small JSON bundle and up to three downscaled PNG screenshots (before, after, and after-with-marker showing exactly where the tap landed) to a 10-day-retention store so we can diagnose and fix tap reliability issues. We do not use this data to train AI models and do not share it with third parties. See PRIVACY.md for details.
To opt out while keeping the rest of the package working:
"env": { "RN_AI_DEVTOOLS_DISABLE_FAILURE_ARTIFACTS": "1" }
Official npm builds are stamped with a secret build token at publish time (via npm run inject-token in CI, which requires the BUILD_TOKEN secret). Builds from a source checkout carry an inert placeholder and are labeled "fork" in our telemetry dashboard. The token is never committed to source.
MIT
Выполни в терминале:
claude mcp add react-native-ai-devtools --env IOS_DRIVER="" --env RN_AI_DEVTOOLS_DISABLE_FAILURE_ARTIFACTS="" --env RN_DEBUGGER_TELEMETRY="" -- npx -y react-native-ai-devtoolspro-tip
Поставил React Native Ai Devtools? Скажи Claude: «запомни почему я установил React Native Ai Devtools и что хочу попробовать» — попадёт в твой Vault.
как это работает →CSA PROJECT - FZCO © 2026 IFZA Business Park, DDP, Premises Number 31174 - 001
Безопасность
Низкий рискАвтоматическая эвристика по публичным данным — не гарантия безопасности.