Install
openclaw skills install open-computer-useGuidance for installing, configuring, and operating Open Computer Use, an open-source Computer Use MCP service for macOS, Linux, and Windows.
openclaw skills install open-computer-useOpen Computer Use is an open-source Computer Use service exposed through MCP. It lets compatible AI agents operate local desktop apps on macOS, Linux, and Windows through tools such as list_apps, get_app_state, click, type_text, press_key, scroll, drag, and set_value.
Use this skill when a user wants to install, configure, verify, troubleshoot, or operate Open Computer Use from an agent runtime such as Codex, Claude Code, Gemini CLI, opencode, or another MCP client.
Install the CLI:
npm i -g open-computer-use
On macOS, run it once and grant Accessibility and Screen Recording permissions:
open-computer-use
Windows and Linux do not require the macOS permission step.
Install into Codex:
open-computer-use install-codex-mcp
Or configure any MCP client manually:
{
"mcpServers": {
"open-computer-use": {
"command": "open-computer-use",
"args": ["mcp"]
}
}
}
Open Computer Use also includes installer commands for common agent runtimes:
open-computer-use install-codex-plugin
open-computer-use install-claude-mcp
open-computer-use install-gemini-mcp
open-computer-use install-opencode-mcp
Use the CLI to call one tool:
open-computer-use call list_apps
open-computer-use call get_app_state --args '{"app":"TextEdit"}'
Run a sequence in one process so element indexes can be reused:
open-computer-use call --calls '[{"tool":"get_app_state","args":{"app":"TextEdit"}},{"tool":"press_key","args":{"app":"TextEdit","key":"Return"}}]'
Check setup and permissions:
open-computer-use doctor
get_app_state over coordinate clicks when available.