mobile-device-mcp 0.2.7 → 0.2.8

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.
Files changed (2) hide show
  1. package/README.md +68 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -52,10 +52,18 @@ Without this tool: With this tool:
52
52
 
53
53
  ## Quick Start
54
54
 
55
+ ### Install
56
+
57
+ ```bash
58
+ npx mobile-device-mcp
59
+ ```
60
+
61
+ No global install needed. Runs directly via npx.
62
+
55
63
  ### Prerequisites
56
64
  - Node.js 18+
57
65
  - Android device/emulator connected via ADB
58
- - ADB installed (Android SDK Platform Tools)
66
+ - ADB installed ([Android SDK Platform Tools](https://developer.android.com/tools/releases/platform-tools))
59
67
 
60
68
  ### Setup (One-time, 30 seconds)
61
69
 
@@ -63,6 +71,7 @@ Without this tool: With this tool:
63
71
 
64
72
  2. **Add `.mcp.json` to your project root:**
65
73
 
74
+ **macOS / Linux:**
66
75
  ```json
67
76
  {
68
77
  "mcpServers": {
@@ -78,6 +87,64 @@ Without this tool: With this tool:
78
87
  }
79
88
  ```
80
89
 
90
+ **Windows:**
91
+ ```json
92
+ {
93
+ "mcpServers": {
94
+ "mobile-device": {
95
+ "type": "stdio",
96
+ "command": "cmd",
97
+ "args": ["/c", "npx", "-y", "mobile-device-mcp"],
98
+ "env": {
99
+ "GOOGLE_API_KEY": "your-google-api-key"
100
+ }
101
+ }
102
+ }
103
+ }
104
+ ```
105
+
106
+ **With Pro license key** (after [purchasing Pro](https://rzp.io/rzp/r4ijQsJY)):
107
+
108
+ <details>
109
+ <summary>macOS / Linux (Pro)</summary>
110
+
111
+ ```json
112
+ {
113
+ "mcpServers": {
114
+ "mobile-device": {
115
+ "type": "stdio",
116
+ "command": "npx",
117
+ "args": ["-y", "mobile-device-mcp"],
118
+ "env": {
119
+ "GOOGLE_API_KEY": "your-google-api-key",
120
+ "MOBILE_MCP_LICENSE_KEY": "MDMCP-XXXXX-XXXXX-XXXXX-XXXXX"
121
+ }
122
+ }
123
+ }
124
+ }
125
+ ```
126
+ </details>
127
+
128
+ <details>
129
+ <summary>Windows (Pro)</summary>
130
+
131
+ ```json
132
+ {
133
+ "mcpServers": {
134
+ "mobile-device": {
135
+ "type": "stdio",
136
+ "command": "cmd",
137
+ "args": ["/c", "npx", "-y", "mobile-device-mcp"],
138
+ "env": {
139
+ "GOOGLE_API_KEY": "your-google-api-key",
140
+ "MOBILE_MCP_LICENSE_KEY": "MDMCP-XXXXX-XXXXX-XXXXX-XXXXX"
141
+ }
142
+ }
143
+ }
144
+ }
145
+ ```
146
+ </details>
147
+
81
148
  3. **Open your AI coding assistant** from that directory. That's it.
82
149
 
83
150
  The server starts and stops automatically -- you never run it manually. Your AI assistant manages it as a background process via the MCP protocol.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mobile-device-mcp",
3
- "version": "0.2.7",
3
+ "version": "0.2.8",
4
4
  "description": "MCP server that gives AI coding assistants (Claude, Cursor, Windsurf) the ability to see and interact with Android mobile devices via ADB — AI-powered visual inspection, element finding, and device automation",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",