@deepsyte/mobile-mcp 1.0.0
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 +50 -0
- package/dist/index.js +30460 -0
- package/package.json +37 -0
package/README.md
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
# @deepsyte/mobile-mcp
|
|
2
|
+
|
|
3
|
+
Mobile automation MCP server for DeepSyte. Automate Android devices from Claude, Cursor, or any MCP client.
|
|
4
|
+
|
|
5
|
+
## Quick start
|
|
6
|
+
|
|
7
|
+
Add to your MCP client config:
|
|
8
|
+
|
|
9
|
+
```json
|
|
10
|
+
{
|
|
11
|
+
"mcpServers": {
|
|
12
|
+
"deepsyte-mobile": {
|
|
13
|
+
"command": "npx",
|
|
14
|
+
"args": ["-y", "@deepsyte/mobile-mcp"]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## Requirements
|
|
21
|
+
|
|
22
|
+
- Android device or emulator connected via USB/WiFi
|
|
23
|
+
- [ADB (Android Debug Bridge)](https://developer.android.com/tools/adb) installed
|
|
24
|
+
- [Appium](https://appium.io) server running (for session-based tools)
|
|
25
|
+
|
|
26
|
+
## Tools
|
|
27
|
+
|
|
28
|
+
| Tool | Description |
|
|
29
|
+
|------|-------------|
|
|
30
|
+
| `mobile_devices` | List connected Android devices |
|
|
31
|
+
| `mobile_screenshot` | Capture a screenshot (ADB fast path) |
|
|
32
|
+
| `mobile_uitree` | Dump the accessibility UI tree |
|
|
33
|
+
| `mobile_session_start` | Start an Appium session |
|
|
34
|
+
| `mobile_session_stop` | Close the Appium session |
|
|
35
|
+
| `mobile_tap` | Tap a screen coordinate |
|
|
36
|
+
| `mobile_swipe` | Swipe between two points |
|
|
37
|
+
| `mobile_type` | Type text into the focused element |
|
|
38
|
+
| `mobile_key` | Press a hardware key (HOME, BACK, ENTER...) |
|
|
39
|
+
| `mobile_app_launch` | Launch an installed app |
|
|
40
|
+
| `mobile_app_stop` | Terminate a running app |
|
|
41
|
+
| `mobile_record_start` | Start screen recording |
|
|
42
|
+
| `mobile_record_stop` | Stop recording and get the MP4 |
|
|
43
|
+
|
|
44
|
+
## DeepSyte integration
|
|
45
|
+
|
|
46
|
+
Screenshots and recordings can be uploaded to your [DeepSyte](https://deepsyte.com) account. Log in first:
|
|
47
|
+
|
|
48
|
+
```
|
|
49
|
+
npx -y @deepsyte/cli login
|
|
50
|
+
```
|