open-computer-use-mcp 0.1.21 → 0.1.23
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 +6 -1
- package/bin/open-codex-computer-use-mcp +1 -0
- package/bin/open-computer-use +1 -0
- package/bin/open-computer-use-mcp +1 -0
- package/dist/Open Computer Use.app/Contents/Info.plist +1 -1
- package/dist/Open Computer Use.app/Contents/MacOS/OpenComputerUse +0 -0
- package/package.json +1 -1
- package/plugins/open-computer-use/.codex-plugin/plugin.json +1 -1
- package/scripts/postinstall.mjs +1 -1
package/README.md
CHANGED
|
@@ -56,13 +56,18 @@ open-computer-use doctor
|
|
|
56
56
|
# Start the stdio MCP server for Claude Desktop, Cursor, Cline, or another MCP client
|
|
57
57
|
open-computer-use mcp
|
|
58
58
|
|
|
59
|
+
# Call tools directly; the JSON-array form keeps state in one process for follow-up actions
|
|
60
|
+
open-computer-use call list_apps
|
|
61
|
+
open-computer-use call get_app_state --args '{"app":"TextEdit"}'
|
|
62
|
+
open-computer-use call --calls '[{"tool":"get_app_state","args":{"app":"TextEdit"}},{"tool":"press_key","args":{"app":"TextEdit","key":"Return"}}]'
|
|
63
|
+
|
|
59
64
|
# Install this package into the local Codex plugin marketplace/cache
|
|
60
65
|
open-computer-use install-codex-plugin
|
|
61
66
|
```
|
|
62
67
|
|
|
63
68
|
## Notes
|
|
64
69
|
|
|
65
|
-
- Version: `0.1.
|
|
70
|
+
- Version: `0.1.23`
|
|
66
71
|
- Platform: macOS 14+
|
|
67
72
|
- Architectures: `arm64` and `x64` via a universal app bundle
|
|
68
73
|
- The host terminal or app still needs macOS `Accessibility` and `Screen Recording` permissions
|
|
@@ -14,6 +14,7 @@ Commands:
|
|
|
14
14
|
doctor Print permission status and launch onboarding if needed.
|
|
15
15
|
list-apps Print running or recently used apps.
|
|
16
16
|
snapshot <app> Print the current accessibility snapshot for an app.
|
|
17
|
+
call <tool> Call one tool, or run a JSON array of tool calls.
|
|
17
18
|
turn-ended Acknowledge the host turn boundary.
|
|
18
19
|
install-claude-mcp Install the MCP server into ~/.claude.json for this project.
|
|
19
20
|
install-codex-mcp Install the MCP server into ~/.codex/config.toml.
|
package/bin/open-computer-use
CHANGED
|
@@ -14,6 +14,7 @@ Commands:
|
|
|
14
14
|
doctor Print permission status and launch onboarding if needed.
|
|
15
15
|
list-apps Print running or recently used apps.
|
|
16
16
|
snapshot <app> Print the current accessibility snapshot for an app.
|
|
17
|
+
call <tool> Call one tool, or run a JSON array of tool calls.
|
|
17
18
|
turn-ended Acknowledge the host turn boundary.
|
|
18
19
|
install-claude-mcp Install the MCP server into ~/.claude.json for this project.
|
|
19
20
|
install-codex-mcp Install the MCP server into ~/.codex/config.toml.
|
|
@@ -14,6 +14,7 @@ Commands:
|
|
|
14
14
|
doctor Print permission status and launch onboarding if needed.
|
|
15
15
|
list-apps Print running or recently used apps.
|
|
16
16
|
snapshot <app> Print the current accessibility snapshot for an app.
|
|
17
|
+
call <tool> Call one tool, or run a JSON array of tool calls.
|
|
17
18
|
turn-ended Acknowledge the host turn boundary.
|
|
18
19
|
install-claude-mcp Install the MCP server into ~/.claude.json for this project.
|
|
19
20
|
install-codex-mcp Install the MCP server into ~/.codex/config.toml.
|
|
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.23",
|
|
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.23.",
|
|
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
|
"",
|