@srmorete/mobile-device-mcp 0.1.0 → 0.1.2
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 +3 -3
- package/bin/cli.js +29684 -2
- package/package.json +2 -1
- package/src/server/bootstrap.ts +1 -1
package/README.md
CHANGED
|
@@ -53,12 +53,12 @@ Both platforms automatically kill runaway scripts (infinite loops) and create a
|
|
|
53
53
|
### Claude Code
|
|
54
54
|
|
|
55
55
|
```bash
|
|
56
|
-
claude mcp add mobile-device-mcp -- npx -y mobile-device-mcp
|
|
56
|
+
claude mcp add mobile-device-mcp -- npx -y @srmorete/mobile-device-mcp
|
|
57
57
|
```
|
|
58
58
|
|
|
59
59
|
Or with custom ports:
|
|
60
60
|
```bash
|
|
61
|
-
claude mcp add mobile-device-mcp -e MDMS_PORT_ANDROID=20000 -e MDMS_PORT_IOS=21000 -- npx -y mobile-device-mcp
|
|
61
|
+
claude mcp add mobile-device-mcp -e MDMS_PORT_ANDROID=20000 -e MDMS_PORT_IOS=21000 -- npx -y @srmorete/mobile-device-mcp
|
|
62
62
|
```
|
|
63
63
|
|
|
64
64
|
### Modifying `.mcp.json` (Cursor, Claude Desktop, etc)
|
|
@@ -68,7 +68,7 @@ claude mcp add mobile-device-mcp -e MDMS_PORT_ANDROID=20000 -e MDMS_PORT_IOS=210
|
|
|
68
68
|
"mcpServers": {
|
|
69
69
|
"mobile-device-mcp": {
|
|
70
70
|
"command": "npx",
|
|
71
|
-
"args": ["-y", "mobile-device-mcp"],
|
|
71
|
+
"args": ["-y", "@srmorete/mobile-device-mcp"],
|
|
72
72
|
"env": {
|
|
73
73
|
"MDMS_PORT_ANDROID": "18000", # optional
|
|
74
74
|
"MDMS_PORT_IOS": "19000" # optional
|