OpenAra
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@OpenAraclick on the 'Send' button"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Install
npm i -g @openara/cli && openaraAdd to Claude Code / Claude Desktop
openara install-claude-mcpWrites mcpServers.openara into both ~/.claude.json (Claude Code) and ~/Library/Application Support/Claude/claude_desktop_config.json (Claude Desktop).
Add to Cursor
openara install-cursor-mcpWrites mcpServers.openara into ~/.cursor/mcp.json.
Add to Codex CLI
openara install-codex-mcpWrites [mcp_servers.openara] into ~/.codex/config.toml.
Add to Codex App
openara install-codex-pluginInstalls OpenAra as a Codex plugin (manifest under plugins/openara/).
Add to Gemini CLI
openara install-gemini-mcp # current project (./.gemini/settings.json)
openara install-gemini-mcp --scope user # global (~/.gemini/settings.json)Add to OpenCode
openara install-opencode-mcpWrites mcpServers.openara into ~/.config/opencode/opencode.json.
What it gives you
A local Computer Use MCP server. Nine well-tested desktop-control tools (
list_apps,get_app_state,click,type_text,press_key,set_value,scroll,drag,perform_secondary_action) callable from any MCP-aware client.Native macOS Swift runtime — built on Accessibility + AppKit, no Electron, no Python.
Accessibility-first execution. Tries to drive UI through semantic AX paths before falling back to coordinate-level HID input — you keep using your computer while the agent works.
One-line installers for Claude Code, Claude Desktop, Cursor, Codex CLI, Codex App (plugin), Gemini CLI, and OpenCode.
Visible cursor overlay when the agent does need to move a pointer, so you can see what it's about to do.
Manual MCP config
If your agent doesn't have an installer above, or you want to see exactly what's being written, here are the raw configs.
Claude Code
Add to your project's .claude.json (or ~/.claude.json for global):
{
"mcpServers": {
"openara": {
"command": "openara",
"args": ["mcp"]
}
}
}Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"openara": {
"command": "openara",
"args": ["mcp"]
}
}
}Cursor
Add to ~/.cursor/mcp.json (or <project>/.cursor/mcp.json for project-scoped):
{
"mcpServers": {
"openara": {
"command": "openara",
"args": ["mcp"]
}
}
}Codex CLI
Add to ~/.codex/config.toml:
[mcp_servers.openara]
command = "openara"
args = ["mcp"]Codex App (plugin)
OpenAra ships as a Codex plugin under plugins/openara/. From a packaged release run openara install-codex-plugin. From source, point Codex App's local plugin marketplace at this repo's .agents/plugins/marketplace.json.
Gemini CLI
Add to ./.gemini/settings.json for the current project, or ~/.gemini/settings.json for global use:
{
"mcpServers": {
"openara": {
"command": "openara",
"args": ["mcp"]
}
}
}OpenCode
Add to ~/.config/opencode/opencode.json:
{
"mcpServers": {
"openara": {
"command": "openara",
"args": ["mcp"]
}
}
}macOS permissions
OpenAra needs Accessibility and Screen Recording to read window state and drive UI. The first run launches an onboarding window that takes you through granting both. To re-check at any time:
openara doctorCLI reference
openara # first-run onboarding / no-op once granted
openara mcp # stdio MCP server
openara call list_apps # one tool, prints MCP-style JSON
openara call get_app_state --args '{"app":"TextEdit"}'
openara call --calls '[{"tool":"get_app_state","args":{"app":"TextEdit"}}]'
openara call --calls-file examples/textedit-overlay-seq.json --sleep 0.5
openara doctor # permissions check
openara install-claude-mcp # write Claude Code + Claude Desktop config
openara install-cursor-mcp # write Cursor config
openara install-codex-mcp # write Codex CLI config
openara install-codex-plugin # install as Codex plugin
openara install-gemini-mcp [--scope user] # write Gemini CLI config
openara install-opencode-mcp # write OpenCode config
openara -hBuild from source
For contributors, or while the npm package is still being prepared:
git clone https://github.com/Aradotso/OpenAra.git
cd OpenAra
# Build everything (kit + apps + smoke suite)
swift build -c release
# Run the binary directly
.build/release/OpenAra -hYou can also run through Swift Package Manager during development. Anywhere this README says openara <command>, substitute swift run OpenAra <command> from inside the repo:
swift run OpenAra -h
swift run OpenAra mcp # start the stdio MCP server
swift run OpenAra call list_apps # call a single tool
swift run OpenAra doctor # check macOS permissions
swift run OpenAra install-claude-mcp # write Claude Code configLicense
MIT — forked from iFurySt/open-codex-computer-use.
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Aradotso/OpenAra'
If you have feedback or need assistance with the MCP directory API, please join our Discord server