open-computer-use-mcp 0.1.3 → 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 +2 -18
- package/bin/open-codex-computer-use-mcp +9 -1
- package/bin/open-computer-use +9 -1
- package/bin/open-computer-use-mcp +9 -1
- package/dist/Open Computer Use.app/Contents/Info.plist +2 -2
- package/dist/Open Computer Use.app/Contents/MacOS/OpenComputerUse +0 -0
- package/package.json +2 -2
- package/plugins/open-computer-use/.codex-plugin/plugin.json +1 -1
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
|
|
@@ -1,7 +1,15 @@
|
|
|
1
1
|
#!/usr/bin/env bash
|
|
2
2
|
set -euo pipefail
|
|
3
3
|
|
|
4
|
-
|
|
4
|
+
script_path="${BASH_SOURCE[0]}"
|
|
5
|
+
while [[ -L "${script_path}" ]]; do
|
|
6
|
+
script_dir="$(cd "$(dirname "${script_path}")" && pwd)"
|
|
7
|
+
script_path="$(readlink "${script_path}")"
|
|
8
|
+
if [[ "${script_path}" != /* ]]; then
|
|
9
|
+
script_path="${script_dir}/${script_path}"
|
|
10
|
+
fi
|
|
11
|
+
done
|
|
12
|
+
package_root="$(cd "$(dirname "${script_path}")/.." && pwd)"
|
|
5
13
|
app_binary="${package_root}/dist/Open Computer Use.app/Contents/MacOS/OpenComputerUse"
|
|
6
14
|
install_script="${package_root}/scripts/install-codex-plugin.sh"
|
|
7
15
|
|
package/bin/open-computer-use
CHANGED
|
@@ -1,7 +1,15 @@
|
|
|
1
1
|
#!/usr/bin/env bash
|
|
2
2
|
set -euo pipefail
|
|
3
3
|
|
|
4
|
-
|
|
4
|
+
script_path="${BASH_SOURCE[0]}"
|
|
5
|
+
while [[ -L "${script_path}" ]]; do
|
|
6
|
+
script_dir="$(cd "$(dirname "${script_path}")" && pwd)"
|
|
7
|
+
script_path="$(readlink "${script_path}")"
|
|
8
|
+
if [[ "${script_path}" != /* ]]; then
|
|
9
|
+
script_path="${script_dir}/${script_path}"
|
|
10
|
+
fi
|
|
11
|
+
done
|
|
12
|
+
package_root="$(cd "$(dirname "${script_path}")/.." && pwd)"
|
|
5
13
|
app_binary="${package_root}/dist/Open Computer Use.app/Contents/MacOS/OpenComputerUse"
|
|
6
14
|
install_script="${package_root}/scripts/install-codex-plugin.sh"
|
|
7
15
|
|
|
@@ -1,7 +1,15 @@
|
|
|
1
1
|
#!/usr/bin/env bash
|
|
2
2
|
set -euo pipefail
|
|
3
3
|
|
|
4
|
-
|
|
4
|
+
script_path="${BASH_SOURCE[0]}"
|
|
5
|
+
while [[ -L "${script_path}" ]]; do
|
|
6
|
+
script_dir="$(cd "$(dirname "${script_path}")" && pwd)"
|
|
7
|
+
script_path="$(readlink "${script_path}")"
|
|
8
|
+
if [[ "${script_path}" != /* ]]; then
|
|
9
|
+
script_path="${script_dir}/${script_path}"
|
|
10
|
+
fi
|
|
11
|
+
done
|
|
12
|
+
package_root="$(cd "$(dirname "${script_path}")/.." && pwd)"
|
|
5
13
|
app_binary="${package_root}/dist/Open Computer Use.app/Contents/MacOS/OpenComputerUse"
|
|
6
14
|
install_script="${package_root}/scripts/install-codex-plugin.sh"
|
|
7
15
|
|
|
@@ -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-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"
|