open-codex-computer-use-mcp 0.1.4 → 0.1.5
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
CHANGED
|
@@ -29,28 +29,12 @@ If your MCP client accepts a stdio-style `mcpServers` JSON config, this is the d
|
|
|
29
29
|
}
|
|
30
30
|
```
|
|
31
31
|
|
|
32
|
-
If you want the server without the visual cursor overlay:
|
|
33
|
-
|
|
34
|
-
```json
|
|
35
|
-
{
|
|
36
|
-
"mcpServers": {
|
|
37
|
-
"open-computer-use": {
|
|
38
|
-
"command": "open-computer-use",
|
|
39
|
-
"args": ["mcp"],
|
|
40
|
-
"env": {
|
|
41
|
-
"OPEN_COMPUTER_USE_VISUAL_CURSOR": "0"
|
|
42
|
-
}
|
|
43
|
-
}
|
|
44
|
-
}
|
|
45
|
-
}
|
|
46
|
-
```
|
|
47
|
-
|
|
48
32
|
In practice, using this package as MCP is: global install, add the JSON config, then grant macOS `Accessibility` and `Screen Recording` permission to the host terminal or app on first use.
|
|
49
33
|
|
|
50
34
|
## Use
|
|
51
35
|
|
|
52
36
|
```bash
|
|
53
|
-
# Check permissions
|
|
37
|
+
# Check permissions; if Accessibility / Screen Recording is missing, open the permission onboarding window
|
|
54
38
|
open-computer-use doctor
|
|
55
39
|
|
|
56
40
|
# Start the stdio MCP server for Claude Desktop, Cursor, Cline, or another MCP client
|
|
@@ -62,7 +46,7 @@ open-computer-use install-codex-plugin
|
|
|
62
46
|
|
|
63
47
|
## Notes
|
|
64
48
|
|
|
65
|
-
- Version: `0.1.
|
|
49
|
+
- Version: `0.1.5`
|
|
66
50
|
- Platform: macOS 14+
|
|
67
51
|
- Architectures: `arm64` and `x64` via a universal app bundle
|
|
68
52
|
- The host terminal or app still needs macOS `Accessibility` and `Screen Recording` permissions
|
|
@@ -19,9 +19,9 @@
|
|
|
19
19
|
<key>CFBundlePackageType</key>
|
|
20
20
|
<string>APPL</string>
|
|
21
21
|
<key>CFBundleShortVersionString</key>
|
|
22
|
-
<string>0.1.
|
|
22
|
+
<string>0.1.5</string>
|
|
23
23
|
<key>CFBundleVersion</key>
|
|
24
|
-
<string>
|
|
24
|
+
<string>1</string>
|
|
25
25
|
<key>LSMinimumSystemVersion</key>
|
|
26
26
|
<string>14.0</string>
|
|
27
27
|
<key>LSUIElement</key>
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "open-codex-computer-use-mcp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"description": "Prebuilt macOS Computer Use MCP server with Codex plugin installer.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://github.com/iFurySt/open-codex-computer-use",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
9
|
-
"url": "
|
|
9
|
+
"url": "https://github.com/iFurySt/open-codex-computer-use"
|
|
10
10
|
},
|
|
11
11
|
"bugs": {
|
|
12
12
|
"url": "https://github.com/iFurySt/open-codex-computer-use/issues"
|