expo-remote-app-mcp
v1.0.2
Published
MCP bridge server for remotely inspecting an Expo app over WebSocket and CDP.
Downloads
298
Maintainers
Readme
Expo Remote App MCP
MCP server for remotely inspecting and debugging an Expo React Native app.
Install
Register the MCP server with your MCP client:
{
"mcpServers": {
"expo-remote-app-mcp": {
"command": "npx",
"args": ["-y", "expo-remote-app-mcp"]
}
}
}The WebSocket bridge starts at port 2000 and automatically tries the next port if one is already in use.
App Bridge
Install the app-side bridge in your Expo app:
npm install expo-remote-app-bridge react-native-view-shotThen wrap your app with the bridge component from either:
import { RemoteControlBridge } from "expo-remote-app-bridge/expo-router";or:
import { RemoteControlBridge } from "expo-remote-app-bridge/react-navigation";