open-computer-use-mcp 0.1.9 → 0.1.11
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
|
@@ -14,7 +14,7 @@ This package bundles a ready-to-run `Open Computer Use.app`, the Codex plugin me
|
|
|
14
14
|
npm install -g open-computer-use-mcp
|
|
15
15
|
```
|
|
16
16
|
|
|
17
|
-
After install, run `open-computer-use doctor` first. If macOS `Accessibility` or `Screen Recording` permission is missing, it will open the permission onboarding window and tell you what still needs to be granted.
|
|
17
|
+
After install, run `open-computer-use doctor` first. If macOS `Accessibility` or `Screen Recording` permission is missing, it will open the permission onboarding window and tell you what still needs to be granted. If everything is already granted, it just prints the status and exits.
|
|
18
18
|
|
|
19
19
|
## MCP config
|
|
20
20
|
|
|
@@ -31,7 +31,7 @@ If your MCP client accepts a stdio-style `mcpServers` JSON config, this is the d
|
|
|
31
31
|
}
|
|
32
32
|
```
|
|
33
33
|
|
|
34
|
-
In practice, using this package as MCP is: global install, add the JSON config, then grant macOS `Accessibility` and `Screen Recording` permission to the
|
|
34
|
+
In practice, using this package as MCP is: global install, add the JSON config, then grant macOS `Accessibility` and `Screen Recording` permission to the bundled npm-installed `Open Computer Use.app` on first use.
|
|
35
35
|
|
|
36
36
|
Package page: https://www.npmjs.com/package/open-computer-use-mcp
|
|
37
37
|
|
|
@@ -50,6 +50,7 @@ open-computer-use install-claude-mcp
|
|
|
50
50
|
open-computer-use install-codex-mcp
|
|
51
51
|
|
|
52
52
|
# Check permissions first; if Accessibility / Screen Recording is missing, open the permission onboarding window
|
|
53
|
+
# If both are already granted, this just prints the status and exits
|
|
53
54
|
open-computer-use doctor
|
|
54
55
|
|
|
55
56
|
# Start the stdio MCP server for Claude Desktop, Cursor, Cline, or another MCP client
|
|
@@ -61,7 +62,7 @@ open-computer-use install-codex-plugin
|
|
|
61
62
|
|
|
62
63
|
## Notes
|
|
63
64
|
|
|
64
|
-
- Version: `0.1.
|
|
65
|
+
- Version: `0.1.11`
|
|
65
66
|
- Platform: macOS 14+
|
|
66
67
|
- Architectures: `arm64` and `x64` via a universal app bundle
|
|
67
68
|
- The host terminal or app still needs macOS `Accessibility` and `Screen Recording` permissions
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
<key>CFBundleIconFile</key>
|
|
10
10
|
<string>OpenComputerUse.icns</string>
|
|
11
11
|
<key>CFBundleIdentifier</key>
|
|
12
|
-
<string>
|
|
12
|
+
<string>com.ifuryst.opencomputeruse</string>
|
|
13
13
|
<key>CFBundleInfoDictionaryVersion</key>
|
|
14
14
|
<string>6.0</string>
|
|
15
15
|
<key>CFBundleName</key>
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
<key>CFBundlePackageType</key>
|
|
20
20
|
<string>APPL</string>
|
|
21
21
|
<key>CFBundleShortVersionString</key>
|
|
22
|
-
<string>0.1.
|
|
22
|
+
<string>0.1.11</string>
|
|
23
23
|
<key>CFBundleVersion</key>
|
|
24
24
|
<string>1</string>
|
|
25
25
|
<key>LSMinimumSystemVersion</key>
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "open-computer-use-mcp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.11",
|
|
4
4
|
"description": "Prebuilt macOS Computer Use MCP server. After install, run open-computer-use doctor.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://github.com/iFurySt/open-codex-computer-use",
|
package/scripts/postinstall.mjs
CHANGED
|
@@ -11,7 +11,7 @@ const mcpConfig = {
|
|
|
11
11
|
};
|
|
12
12
|
const lines = [
|
|
13
13
|
"",
|
|
14
|
-
"Installed open-computer-use-mcp@0.1.
|
|
14
|
+
"Installed open-computer-use-mcp@0.1.11.",
|
|
15
15
|
"Package: https://www.npmjs.com/package/open-computer-use-mcp",
|
|
16
16
|
"Commands: open-computer-use, open-computer-use-mcp, open-codex-computer-use-mcp",
|
|
17
17
|
"",
|