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.
React Native AI DevTools
An MCP server that gives AI assistants real-time access to a running React Native app. It bridges the gap between static code and live runtime, turning AI assistants from guessing machines into informed development partners.
Positioning: This is not a debugger. This is not a QA tool. This is a Runtime AI Bridge — the missing layer between AI coding assistants and live mobile applications. Without it, your AI assistant is blind. With it, the AI sees everything happening in your app in real time.
Feedback & Feature Requests
Have an idea or found something that could be better? Head over to GitHub Discussions to share feedback, request features, and vote on what gets built next.
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
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 defaultUI Automation - Swipe, long press, text input, and key events on both platforms
Accessibility 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)
Platform Setup
Android
Android works out of the box — all device control tools use ADB, which ships with Android Studio. Verify it's available:
adb devicesiOS Simulator — UI Automation Setup
iOS UI automation tools (tap, swipe, text input, accessibility queries) require a UI driver. Install one of the following:
Option A: AXe CLI (experimental)
AXe is a standalone CLI for iOS simulator automation. No daemon required — single binary, simple setup.
brew install cameroncooke/axe/axeVerify: axe --version
Add env to your MCP server configuration:
{
"mcpServers": {
"rn-debugger": {
"type": "stdio",
"command": "npx",
"args": ["react-native-ai-devtools"],
"env": { "IOS_DRIVER": "axe" }
}
}
}Note: AXe text input only supports US keyboard layout characters.
Option B: IDB
IDB (iOS Development Bridge) is a tool built by Meta for automating iOS Simulators. Requires a background daemon.
brew install idb-companionVerify: idb_companion --list 1
IDB is the default driver — no IOS_DRIVER env var needed.
What works without a UI driver:
Capability | Without IDB/AXe | With IDB/AXe |
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.
Requirements
Node.js 18+
React Native app running with Metro bundler
iOS UI automation: Facebook IDB (
brew install idb-companion) or AXe CLI (brew install cameroncooke/axe/axe) — 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 Setup)
Claude Code Setup
No installation required - Claude Code uses npx to run the latest version automatically.
Global (all projects)
claude mcp add rn-debugger --scope user -- npx react-native-ai-devtoolsProject-specific
claude mcp add rn-debugger --scope project -- npx react-native-ai-devtoolsManual Configuration
Add to ~/.claude.json (user scope) or .mcp.json (project scope):
{
"mcpServers": {
"rn-debugger": {
"type": "stdio",
"command": "npx",
"args": ["react-native-ai-devtools"]
}
}
}Restart Claude Code after adding the configuration.
VS Code Copilot Setup
Requires VS Code 1.102+ with Copilot (docs).
Via Command Palette: Cmd+Shift+P → "MCP: Add Server"
Manual config - add to .vscode/mcp.json:
{
"servers": {
"rn-debugger": {
"type": "stdio",
"command": "npx",
"args": ["-y", "react-native-ai-devtools"]
}
}
}Cursor Setup
Via Command Palette: Cmd+Shift+P → "View: Open MCP Settings"
Manual config - add to .cursor/mcp.json (project) or ~/.cursor/mcp.json (global):
{
"mcpServers": {
"rn-debugger": {
"command": "npx",
"args": ["-y", "react-native-ai-devtools"]
}
}
}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 |
| Screen map of visible components with positions, sizes, and text content |
| Unified tap — auto-detects platform, tries fiber → accessibility → OCR → coordinates |
| Run JS expressions in the app runtime (REPL-style) |
| Take device screenshots |
Usage
Start your React Native app:
npm start # or expo startIn Claude Code, scan for Metro:
Use scan_metro to find and connect to MetroGet logs:
Use get_logs to see recent console output
Detailed Guides
Guide | Description |
| |
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 |
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 |
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
Explicit Connection
The 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.
Graceful Shutdown
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.
Reconnection on Disconnect
When the connection to Metro is lost (e.g., app restart, Metro restart, or network issues):
The server automatically attempts to reconnect
Uses exponential backoff: 500ms, 1s, 2s, 4s, 8s (up to 8 attempts)
Re-fetches device list to handle new WebSocket URLs
Preserves existing log and network buffers
Connection Gap Warnings
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.Monitor Connection Health
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 closedTroubleshooting
No devices found
Make sure the app is running on a simulator/device
Check that Metro bundler is running (
npm start)
Wrong device connected
The server prioritizes devices in this order:
React Native Bridgeless (SDK 54+)
Hermes React Native
Any React Native (excluding Reanimated/Experimental)
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 & Data Collection
This package collects anonymous usage telemetry to help improve the product. No personal information is collected.
What 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.
Auto-registration
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 Pro dashboard for managing installations and subscriptions. Auto-registration lays the groundwork so these features work seamlessly when they ship, without requiring a disruptive setup step later.
What is sent:
A random installation ID (UUID)
A device fingerprint (one-way SHA-256 hash — cannot be reversed to recover its components)
Platform, hostname, OS version, and server version
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.
Opt-out
To disable telemetry and auto-registration, add RN_DEBUGGER_TELEMETRY to the env field in your MCP server configuration:
{
"mcpServers": {
"rn-debugger": {
"type": "stdio",
"command": "npx",
"args": ["react-native-ai-devtools"],
"env": { "RN_DEBUGGER_TELEMETRY": "false" }
}
}
}All debugging tools work normally with telemetry disabled. For the complete privacy policy, see PRIVACY.md.
License
MIT
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
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/metro-logs-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server