native-devtools-mcp 0.2.2 → 0.3.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 +37 -10
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
|
|
12
12
|
A Model Context Protocol (MCP) server that provides **Computer Use** capabilities: screenshots, OCR, input simulation, and window management.
|
|
13
13
|
|
|
14
|
-
[Features](
|
|
14
|
+
[Features](#-features) • [Installation](#-installation) • [For AI Agents](#-for-ai-agents-llms) • [Permissions](#-required-permissions-macos)
|
|
15
15
|
|
|
16
16
|

|
|
17
17
|
|
|
@@ -40,23 +40,23 @@ This MCP server is designed to be **highly discoverable and usable** by AI model
|
|
|
40
40
|
2. `click` / `type_text`: The "hands". Interacts with the system based on visual feedback.
|
|
41
41
|
3. `find_text`: A shortcut to find text on screen and get its coordinates immediately.
|
|
42
42
|
|
|
43
|
-
## 📦 Installation
|
|
43
|
+
## 📦 Installation (macOS + Windows)
|
|
44
44
|
|
|
45
|
-
|
|
45
|
+
The install steps are identical on macOS and Windows.
|
|
46
46
|
|
|
47
|
-
|
|
47
|
+
### Option 1: Run with `npx` (no install needed)
|
|
48
48
|
|
|
49
49
|
```bash
|
|
50
50
|
npx -y native-devtools-mcp
|
|
51
51
|
```
|
|
52
52
|
|
|
53
|
-
### Option 2: Global
|
|
53
|
+
### Option 2: Global install
|
|
54
54
|
|
|
55
55
|
```bash
|
|
56
56
|
npm install -g native-devtools-mcp
|
|
57
57
|
```
|
|
58
58
|
|
|
59
|
-
### Option 3: Build from
|
|
59
|
+
### Option 3: Build from source (Rust)
|
|
60
60
|
|
|
61
61
|
<details>
|
|
62
62
|
<summary>Click to expand build instructions</summary>
|
|
@@ -71,10 +71,37 @@ cargo build --release
|
|
|
71
71
|
|
|
72
72
|
## ⚙️ Configuration
|
|
73
73
|
|
|
74
|
-
|
|
74
|
+
### macOS Configuration
|
|
75
75
|
|
|
76
|
-
**
|
|
77
|
-
|
|
76
|
+
**Claude Desktop config file:** `~/Library/Application Support/Claude/claude_desktop_config.json`
|
|
77
|
+
|
|
78
|
+
**Claude Desktop requires the signed app bundle** (npx/npm will not work due to Gatekeeper):
|
|
79
|
+
|
|
80
|
+
1. Download `NativeDevtools-X.X.X.dmg` from [GitHub Releases](https://github.com/sh3ll3x3c/native-devtools-mcp/releases)
|
|
81
|
+
2. Open the DMG and drag `NativeDevtools.app` to `/Applications`
|
|
82
|
+
3. Configure Claude Desktop:
|
|
83
|
+
|
|
84
|
+
```json
|
|
85
|
+
{
|
|
86
|
+
"mcpServers": {
|
|
87
|
+
"native-devtools": {
|
|
88
|
+
"command": "/Applications/NativeDevtools.app/Contents/MacOS/native-devtools-mcp"
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
4. Restart Claude Desktop - it will prompt for Screen Recording and Accessibility permissions for NativeDevtools
|
|
95
|
+
|
|
96
|
+
> **Note:** Claude Code (CLI) can use either the signed app or npx - both work.
|
|
97
|
+
|
|
98
|
+
### Windows Configuration
|
|
99
|
+
|
|
100
|
+
**Claude Desktop config file:** `%APPDATA%\Claude\claude_desktop_config.json`
|
|
101
|
+
|
|
102
|
+
### Configuration JSON (Windows and macOS CLI)
|
|
103
|
+
|
|
104
|
+
For Windows (or macOS with Claude Code CLI):
|
|
78
105
|
|
|
79
106
|
```json
|
|
80
107
|
{
|
|
@@ -171,7 +198,7 @@ On macOS, you must grant permissions to the **host application** (e.g., Terminal
|
|
|
171
198
|
|
|
172
199
|
> **Restart Required:** After granting permissions, you must fully quit and restart the host application.
|
|
173
200
|
|
|
174
|
-
## 🪟 Windows
|
|
201
|
+
## 🪟 Windows Notes
|
|
175
202
|
|
|
176
203
|
Works out of the box on **Windows 10/11**.
|
|
177
204
|
* Uses standard Win32 APIs (GDI, SendInput).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "native-devtools-mcp",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "MCP server for testing native desktop applications",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -25,8 +25,8 @@
|
|
|
25
25
|
"bin"
|
|
26
26
|
],
|
|
27
27
|
"optionalDependencies": {
|
|
28
|
-
"@sh3ll3x3c/native-devtools-mcp-darwin-arm64": "0.
|
|
29
|
-
"@sh3ll3x3c/native-devtools-mcp-win32-x64": "0.
|
|
28
|
+
"@sh3ll3x3c/native-devtools-mcp-darwin-arm64": "0.3.0",
|
|
29
|
+
"@sh3ll3x3c/native-devtools-mcp-win32-x64": "0.3.0"
|
|
30
30
|
},
|
|
31
31
|
"engines": {
|
|
32
32
|
"node": ">=18"
|