twodoorsdev
MCP 服务配置
复制以下 JSON 到 OPClaw 或其他 MCP 客户端的配置文件中即可使用
{
"mcpServers": {
"react-native-debugger-mcp": {
"args": [
"-y",
"@twodoorsdev/react-native-debugger-mcp"
],
"command": "npx"
}
}
}
可用工具 (2 个)
该服务在 MCP 协议中暴露的工具,AI 可按需调用
getConnectedApps
Get the connected apps
该工具无需必填参数,直接调用即可
readConsoleLogsFromApp
Reads console logs from a connected React Native app through the debugger WebSocket
该工具无需必填参数,直接调用即可
服务介绍
React Native Debugger MCP
一个可以连接到你的React Native应用程序调试器的MCP服务器。
✨ 主要特性
- 可以从Metro获取控制台日志
🚀 快速开始
在你的Claude Desktop/Cursor MCP配置中添加以下内容:
json
{
"mcpServers": {
"react-native-debugger-mcp": {
"command": "npx",
"args": ["-y", "@twodoorsdev/react-native-debugger-mcp"]
}
}
}