Cua Computer Server
Server component for the Computer-Use Interface (CUI) framework providing low-level computer control primitives.
Documentation - Installation, guides, and configuration.
Interfaces
The Computer Server exposes multiple interfaces simultaneously:
- HTTP/WebSocket - REST API and WebSocket for programmatic access
- MCP via HTTP - Model Context Protocol over streamable HTTP at
/mcpendpoint
Android emulators also expose the emulator's built-in EmulatorController gRPC service on port 8554 (via
-grpc 8554launch flag). Local Android sandboxes (AndroidEmulatorRuntime) useGRPCEmulatorTransportto callgetScreenshot()directly on this service, bypassing the computer-server HTTP layer entirely. Benchmark: p50 ~20ms, ~49 RPS vs ADB-backed HTTP p50 ~519ms, ~1.8 RPS.
Installation
# Basic installation (HTTP/WebSocket only)
pip install cua-computer-server
# With MCP support
pip install cua-computer-server[mcp]
Usage
# Start the server on default port 8000
python -m computer_server
# Or with custom port
python -m computer_server --port 8080
# Allow external access explicitly
python -m computer_server --host 0.0.0.0
# With resolution scaling (useful for Retina displays or VMs)
python -m computer_server --width 1512 --height 982
By default the server binds to 127.0.0.1. Deployments that need access from
other hosts should pass --host 0.0.0.0 or another explicit interface.
This provides:
- HTTP API at
/ws,/cmd,/statusendpoints - MCP server at
/mcpendpoint (requiresfastmcppackage)
MCP clients can connect via streamable HTTP at http://localhost:8000/mcp.
Resolution Scaling
When running on Retina displays or in VMs where the coordinate system may differ, use the --width and --height flags to specify the target resolution:
- Screenshots will be resized to the target resolution
- Click coordinates received will be scaled from target to actual screen coordinates
- Cursor position will be reported in target coordinates
This ensures the AI model sees consistent coordinates between screenshots and mouse actions.
Claude Code Integration
- Start the server (or run as a service/LaunchAgent):
python -m computer_server --port 8000
- Add the MCP server URL to Claude Code:
claude mcp add cua-computer-server --transport http http://localhost:8000/mcp
Available MCP Tools
The MCP interface exposes 40+ tools for computer control:
Screen & Mouse
computer_screenshot- Capture current screencomputer_click- Click at coordinatescomputer_double_click- Double-clickcomputer_move- Move cursorcomputer_drag- Drag from start to end coordinatescomputer_scroll- Scroll at positioncomputer_get_screen_size- Get screen dimensionscomputer_get_cursor_position- Get cursor position
Keyboard
computer_type- Type textcomputer_press_key- Press a single keycomputer_hotkey- Press key combination (e.g., Ctrl+C)computer_key_down/computer_key_up- Hold/release keys
Clipboard
computer_clipboard_get- Get clipboard contentcomputer_clipboard_set- Set clipboard content
Shell
computer_run_command- Execute shell command
File System
computer_file_read/computer_file_write- Read/write filescomputer_file_exists/computer_directory_exists- Check existencecomputer_list_directory- List directory contentscomputer_create_directory- Create directorycomputer_delete_file/computer_delete_directory- Delete files/directories
Window Management
computer_open- Open file or URLcomputer_launch_app- Launch applicationcomputer_get_active_window- Get active windowcomputer_activate_window- Focus a windowcomputer_minimize_window/computer_maximize_window- Window statecomputer_close_window- Close window
Accessibility
computer_get_accessibility_tree- Get UI element treecomputer_find_element- Find UI element by role/title