Metro Logs MCP
The Metro Logs MCP server enables AI-assisted debugging of React Native apps by connecting to Metro bundlers and providing tools for log capture, network monitoring, component inspection, device control, and JavaScript execution.
Connection & Log Management
Automatically scan for and connect to Metro bundler servers (
scan_metro,connect_metro)Capture, filter, search, and clear console logs by level, text, or format
Monitor connection health with auto-reconnection
Network Monitoring
Track HTTP requests/responses with headers, body, and timing (
get_network_requests,get_request_details)Filter by method, status code, or URL pattern; view statistics by method, status, and domain
App Inspection & Code Execution
Execute JavaScript expressions directly in the running app (REPL-style via
execute_in_app)Discover and inspect global debug objects like Redux, Apollo, or Expo Router (
list_debug_globals,inspect_global)Reload the app remotely
React Component Inspection
Browse the full component tree or a focused subtree (
get_component_tree)Inspect specific components for props, state/hooks, and layout (
inspect_component,find_components)Inspect components at specific screen coordinates via the Element Inspector
Bundle Error Detection
Check Metro bundler status and retrieve compilation errors with file locations (
get_bundle_status,get_bundle_errors)
Android Device Control (via ADB)
Take screenshots, install/launch apps, list packages
Tap, long press, swipe, type text, send key events
Query UI accessibility tree; find/wait for elements by text or resource ID
iOS Simulator Control (via simctl/IDB)
Take screenshots, install/launch/terminate apps, open URLs, boot simulators
Tap, swipe, type text, press hardware buttons (requires IDB)
Query accessibility tree; find/wait for elements by label or value (requires IDB)
OCR Text Extraction
Extract all visible text from screenshots with tap-ready coordinates (
ocr_screenshot)Works on any screen content regardless of accessibility labels
Debug Web Dashboard
Access a browser-based UI for real-time log and network monitoring
JSON API endpoints for programmatic access to logs, network data, and bundle errors
Supports capturing console logs from Expo SDK 54+ applications running with React Native Bridgeless architecture through Metro bundler integration.
Captures and retrieves React Native console logs from Metro bundler, enabling real-time access to app logs with filtering, searching, and auto-discovery of running Metro servers.
Captures console.log, console.warn, and console.error output from React Native applications (RN 0.70+) running with Hermes runtime via Chrome DevTools Protocol.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Metro Logs MCPshow me recent error logs from my React Native app"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
ExecBro
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 to start — and installing the optional SDK is recommended for the most robust log and network capture.
Get started
Install the SDK for richer capture — optional, but recommended for the most robust log, network, and state experience
Related MCP server: React Native DevTools MCP
See your usage — execbro.com
Log in at execbro.com to see your ExecBro activity rendered back to you: which tools you use most, tool error rates, and your session history — so you can spot flaky tools, track usage over time, and understand how your agent drives the app across sessions. It's built from the same anonymous telemetry described in Telemetry & Privacy, tied to your installation ID.
Features
Runtime Interaction
Console Log Capture - Capture
console.log,warn,error,info,debugwith 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 startupNetwork Request Tracking - Monitor HTTP requests/responses with headers, timing, and body content. Like logs, early network requests on cold start may be missed before the connection is established. Install the optional SDK for full capture from app startup including request/response bodies
JavaScript Execution - Run code directly in your app (REPL-style) and inspect results
Global State Debugging - Discover and inspect Apollo Client, Redux stores, Expo Router, and custom globals. Wire stores and other app internals straight into the agent with the optional SDK for direct, reliable state access
Bundle Error Detection - Get Metro bundler errors and compilation issues with file locations
Device Control
iOS Simulator - Screenshots, app management, URL handling, boot/terminate (via simctl)
Android Devices - Screenshots, app install/launch, package management (via ADB)
Unified Tap - Single
taptool 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 defaultUnified Swipe - Single
swipetool that auto-routes to iOS or Android based on the connected device. Accepts screenshot pixel coordinates, handles per-platform conversion, and returns averification.meaningfulsignal 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 treeUI Automation - Swipe, long press, key events, and text input on both platforms. On Bridgeless/Fabric apps,
clear_focused_inputanddismiss_keyboardoperate on whatever has focus, andios_input_text/android_input_textacceptreplace:trueto overwrite pre-filled values — all three update React state throughonChangeTextso controlled components (Formik, react-hook-form, useState) stay consistentAccessibility Inspection - Query UI hierarchy to find elements by text, label, or resource ID
OCR Text Extraction - Extract visible text with tap-ready coordinates via Google Cloud Vision (works on any screen content)
Multi-Device Debugging
Connect All Devices -
scan_metroautomatically discovers and connects to all Bridgeless targets on each Metro portDevice Targeting - Every tool accepts an optional
deviceparameter for targeting specific devices by name (case-insensitive substring match)Per-Device Buffers - Logs and network requests are captured separately per device for clean debugging
Cross-Platform Comparison - Debug iOS and Android side-by-side, comparing logs, network traffic, and component trees
Under the Hood
Auto-Discovery - Scans Metro on ports 8081, 8082, 19000-19002 automatically
Multi-Device Support - Connects to all Bridgeless targets simultaneously, with per-device log and network buffers
Auto-Reconnection - Exponential backoff (up to 8 attempts) when connection drops
Efficient Buffering - Circular buffers: 500 logs, 200 network requests
Platform Support - Expo SDK 54+ (Bridgeless) and React Native 0.70+ (Hermes)
Setup
Add ExecBro to Claude Code in one command — no installation, npx fetches the latest version on demand:
claude mcp add execbro --scope user -- npx -y execbro@latestThen fully restart the client (quit and relaunch) so it picks up the new server.
Using a different client or need platform setup? The full setup guide covers Claude Desktop, Codex CLI, Cursor, VS Code Copilot, Windsurf, Zed, and Gemini CLI, plus Android and iOS simulator UI automation requirements.
Install the SDK (recommended)
ExecBro works with zero app changes, but installing the companion execbro-sdk package is the single biggest upgrade to debugging quality. It lets you wire up the important parts of your app — your state stores and your network layer — directly into the agent's reach, so the AI inspects real Redux/TanStack Query state and full request/response bodies instead of guessing from the outside.
Without SDK | With SDK | |
State stores (Redux, TanStack Query, …) | Manual via | Wired up — direct references |
Request/response bodies | Not available | Full (including GraphQL) |
Startup network requests (auth, config) | Missed | Captured from first fetch |
Console logs from startup | May miss early logs | Captured from first log |
Works on Bridgeless (Expo SDK 52+) | Partial | Full |
It's one npm install plus a single init() call in your app's entry file. See the SDK guide for install, initialization, and every config option.
Requirements
Node.js 18+
React Native app running with Metro bundler
Recommended:
execbro-sdkin your app — wires stores and the network layer into the agent for dramatically better debugging (optional; ExecBro works without it)iOS UI automation: AXe CLI (
brew install cameroncooke/axe/axe, default) or Facebook IDB (brew install idb-companion, opt in viaIOS_DRIVER=idb) — required for tap, swipe, text input, accessibility on iOS SimulatorOptional for offline OCR fallback: Python 3.6+ (only needed when cloud OCR is unavailable, see OCR guide)
Claude Code Skills
Pre-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.
Available Tools
See the full tool reference for all tools with descriptions. Key tools:
Tool | Description |
| Start here — scan for Metro servers and auto-connect |
| Capture and search console logs with filtering and summaries |
| Monitor HTTP requests with method/status filtering |
| Flow tracing + factual verification: query, wait on, and assert |
| Screen map of visible components with positions, sizes, and text content |
| Unified tap — auto-detects platform, tries fiber → accessibility → OCR → coordinates |
| Type text into the focused field. |
| Clear the focused TextInput via React |
| Blur the focused input and close the on-screen keyboard |
| Run JS expressions in the app runtime (REPL-style) |
| Take device screenshots |
Usage
Start your React Native app:
npm start # or expo startJust describe what you want in plain language — the agent picks the right tools. You don't need to know tool names or ask for a specific one. For example:
Check the network logs and investigate why this error is happeningWhy is the current screen empty? Take a look and figure it outTap the "Sign in" button and tell me what happensThe list won't scroll — scroll it down and check what's going onInstrument the checkout flow with flowpoints, run it, and verify the steps fire in orderThe agent connects to Metro, reads logs and network, inspects the screen, and drives the UI as needed to answer.
Detailed Guides
Guide | Description |
Per-client MCP config (Claude, Codex, Cursor, VS Code, …), Android & iOS setup | |
Install & | |
| |
SDK setup for full capture, filtering, request details, statistics | |
Debug globals (Apollo, Redux, Expo Router), | |
| |
Unified | |
Cloud Vision OCR, offline fallback, language config, workflows | |
Pre-built skills for session setup, debugging, and automation | |
Complete list of all 40+ tools with descriptions |
How It Works
Fetches device list from Metro's
/jsonendpointConnects to the main JS runtime via CDP (Chrome DevTools Protocol) WebSocket
Enables
Runtime.enableto receiveRuntime.consoleAPICalledeventsNetwork capture via two paths:
With SDK: Reads from the SDK's in-app buffer via
Runtime.evaluate— captures all requests from startup with full headers and bodies, including cold-start events that CDP would missWithout SDK: Enables CDP
Network.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 everything
Stores logs and network requests in circular buffers for retrieval
Connection Management
One server per session — each agent session (each terminal or IDE window) runs its own ExecBro MCP server instance.
Connects on request, not on startup — the server never auto-connects. It only attaches to your running React Native app when you ask it to (e.g.
scan_metro), so it stays out of the way until you actually need a device.One driver per device — if two or more sessions in the same project point at the same Metro/device, they'll compete to control it, like a car with two steering wheels. Keep interaction to a single session per device.
Want parallel sessions? Give each its own device + port — run separate work in a git worktree with its own Metro instance on a different port, and connect a second device (simulator/emulator) to it. For example, keep
mainon the default8081and start the worktree's Metro on8082(npx react-native start --port 8082, ornpx expo start --port 8082), then launch that worktree's app pointed at8082. Each agent session thenscan_metros and drives its own device, so the two never fight over the connection.
Troubleshooting
No devices found
Make sure the app is running on a simulator/device
Check that Metro bundler is running (
npm start)
Logs not appearing
Ensure the app is actively running (not just Metro)
Try
clear_logsthen trigger some actions in the appCheck
get_appsto verify connection statusOn cold start (first launch): The CDP connection is established after the app's early initialization code has already run, so startup logs and network requests are missed. Once connected, use
reload_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 SDK
Telemetry & Privacy
ExecBro collects anonymous usage telemetry — tool names, success/failure, and durations — to improve the product. No source code, file paths, or app content is ever sent. This is what powers your usage dashboard.
See the Telemetry & Data Collection guide for the full breakdown of what's collected, auto-registration, and how to opt out, and PRIVACY.md for the complete privacy policy.
Supported React Native Versions
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 |
Pricing
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.
Feedback & Feature Requests
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.
Package names & staying up to date
Ships as the npm package execbro. The package was previously published as react-native-ai-devtools and before that as react-native-ai-debugger — both legacy names keep receiving identical builds via mirror-publish, so existing installations and MCP configs keep working unchanged. New installs should use execbro.
Already using ExecBro? npx caches packages indefinitely, so you may be stuck on an old version without realizing it. Update your MCP config to use npx -y execbro@latest (see Setup) so every session pulls the latest release with new tools and bug fixes. New installs after this change auto-update automatically.
License
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Appeared in Searches
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/igorzheludkov/execbro'
If you have feedback or need assistance with the MCP directory API, please join our Discord server