react-native-dev-mcp
Provides device control via adb: list/boot devices, install/launch apps, deep links, screenshots, and demo status bar.
Works with Expo-managed React Native projects, providing full tooling support.
Runs Gradle as a background job and parses build logs for diagnostics, returning structured error information.
Uses Hermes CDP protocol for runtime bridge to stream logs and evaluate JS.
Provides device control via simctl: list/boot devices, install/launch apps, deep links, screenshots, and demo status bar.
Connects to Metro's inspector to stream console logs and evaluate JavaScript inside the running app.
Targets React Native framework, providing development tools for device control, runtime inspection, and build diagnostics.
Allows inspecting Redux store state by evaluating JavaScript expressions inside the running app.
Runs xcodebuild as a background job and parses build logs for diagnostics, returning structured error information.
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., "@react-native-dev-mcpRun my app on Android and figure out why it's broken at startup."
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-dev-mcp
MCP server that gives AI coding agents hands, eyes and a mechanic's ear for React Native development.
Coding agents are good at writing React Native code and bad at everything around it: putting the app on a device, seeing what it logs, and understanding why the native build exploded into 4,000 lines of Gradle. This server closes that loop with three pillars:
Pillar | What the agent gets |
๐คฒ Device control | One uniform interface over |
๐ Runtime bridge | Connects to Metro's inspector (CDP/Hermes, RN 0.76+ "Fusebox"). Streams |
๐ง Build diagnostics | Runs |
Works with Expo and bare React Native CLI, RN 0.76+ (tested on 0.80+).
The server is environment-aware: on Windows/Linux, iOS tools are never even registered, and
every failure returns a structured remediation the agent can act on. Start with the
doctor tool.
Install
Requires Node 22+. The server runs on your machine over stdio.
Claude Code
claude mcp add rn-dev -- npx -y react-native-dev-mcpOr per-project, in .mcp.json:
{
"mcpServers": {
"rn-dev": {
"command": "npx",
"args": ["-y", "react-native-dev-mcp"]
}
}
}Codex CLI
In ~/.codex/config.toml:
[mcp_servers.rn-dev]
command = "npx"
args = ["-y", "react-native-dev-mcp"]Cursor / Claude Desktop / others
Any MCP client that speaks stdio works โ point it at npx -y react-native-dev-mcp.
Useful flags: --project-root <path>, --metro-port <port>, --eager-metro, --verbose.
Related MCP server: mcp-devtools
Try asking your agent
Once installed, talk to your agent in plain language โ it picks the right tools:
"Run my app on Android and figure out why it's broken at startup."
"Boot an iPhone simulator, build and install the app, then screenshot the login screen."
"The iOS build is failing. Diagnose it, apply the suggested fix and rebuild until it's green."
"Watch the console while I tap through checkout and summarize any errors you see."
"What's in the Redux store right now? Read the auth slice from the running app."
"Open the deep link myapp://profile/42 and verify it lands on the right screen."
The loop
A typical agent session against a real app:
doctor โ toolchains ok, Metro running, project: expo ยท RN 0.85
list_devices โ iPhone 16 Pro (booted)
run_build {platform: "ios"} โ job a1b2c3d4
get_build_status {jobId} โ โ failed ยท "Sandbox not in sync with Podfile.lock"
โ fix: run pod install (tool run_pod_install)
run_pod_install โ โ
run_build โ get_build_status โ โ
artifact: .../MyApp.app
install_app + launch_app โ app running
read_console {level:"error"} โ "TypeError: cannot read property 'id' of undefined"
evaluate_js {expression:
"globalThis.store.getState().auth"} โ { user: null, โฆ } โ found it
(agent edits code) โ reload_app โ read_console โ clean โ
take_screenshot โ ๐ธ verified visuallyTools (20)
Environment ยท doctor
Devices ยท list_devices boot_device shutdown_device install_app uninstall_app launch_app terminate_app open_url take_screenshot set_status_bar_demo
Runtime ยท list_runtime_targets read_console evaluate_js reload_app
Build ยท run_build get_build_status cancel_build run_pod_install parse_build_log
Full reference with schemas and error codes: documentation site.
Good to know
One debugger at a time (Hermes limitation). If React Native DevTools is attached, runtime tools return
DEBUGGER_OCCUPIEDwith instructions. Close the DevTools tab and retry.Builds never block.
run_buildreturns a job id in <2s; poll withget_build_status(it long-polls up to 60s per call). Logs persist on disk and can be re-parsed any time withparse_build_log.Token-frugal by design. Lists are collapsed and capped, console reads are cursor-based and deduped, build results carry at most 10 diagnostics plus a
logPathescape hatch.
Contributing
The easiest high-impact contribution is a build error signature โ pure YAML plus a log
snippet, no TypeScript. See CONTRIBUTING.md. Development is spec-driven:
every tool's contract lives in specs/.
License
MIT ยฉ Luiz Esper
This server cannot be installed
Maintenance
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/luizhbesper/react-native-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server