react-native-ai-debugger 1.0.3 → 1.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +39 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -55,6 +55,45 @@ Add to `~/.claude.json` (user scope) or `.mcp.json` (project scope):
|
|
|
55
55
|
|
|
56
56
|
Restart Claude Code after adding the configuration.
|
|
57
57
|
|
|
58
|
+
## VS Code Copilot Setup
|
|
59
|
+
|
|
60
|
+
Requires VS Code 1.102+ with Copilot ([docs](https://code.visualstudio.com/docs/copilot/customization/mcp-servers)).
|
|
61
|
+
|
|
62
|
+
**Via Command Palette**: `Cmd+Shift+P` → "MCP: Add Server"
|
|
63
|
+
|
|
64
|
+
**Manual config** - add to `.vscode/mcp.json`:
|
|
65
|
+
|
|
66
|
+
```json
|
|
67
|
+
{
|
|
68
|
+
"servers": {
|
|
69
|
+
"rn-debugger": {
|
|
70
|
+
"type": "stdio",
|
|
71
|
+
"command": "npx",
|
|
72
|
+
"args": ["-y", "react-native-ai-debugger"]
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
## Cursor Setup
|
|
79
|
+
|
|
80
|
+
[Docs](https://docs.cursor.com/context/model-context-protocol)
|
|
81
|
+
|
|
82
|
+
**Via Command Palette**: `Cmd+Shift+P` → "View: Open MCP Settings"
|
|
83
|
+
|
|
84
|
+
**Manual config** - add to `.cursor/mcp.json` (project) or `~/.cursor/mcp.json` (global):
|
|
85
|
+
|
|
86
|
+
```json
|
|
87
|
+
{
|
|
88
|
+
"mcpServers": {
|
|
89
|
+
"rn-debugger": {
|
|
90
|
+
"command": "npx",
|
|
91
|
+
"args": ["-y", "react-native-ai-debugger"]
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
```
|
|
96
|
+
|
|
58
97
|
## Available Tools
|
|
59
98
|
|
|
60
99
|
### Connection & Logs
|