Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Gives AI assistants full macOS desktop control via screenshots, mouse, keyboard, scrolling, and app management.

README.md

computer-use-mcp

An MCP server that gives AI assistants full macOS desktop control: screenshots, mouse, keyboard, scrolling, and app management. Should work with any MCP client - Claude Code, OpenCode, or your own agent.

Requires Claude.app — the server loads two native binaries bundled inside /Applications/Claude.app. You don't need to be running Claude Desktop to use this server, but the app must be installed.

What it does

The server exposes 24 tools covering everything needed to operate a macOS desktop:

| Category | Tools | |---|---| | Vision | screenshot, zoom | | Mouse | left_click, right_click, middle_click, double_click, triple_click, mouse_move, left_click_drag, left_mouse_down, left_mouse_up, scroll | | Keyboard | key, hold_key, type | | Clipboard | read_clipboard, write_clipboard | | Apps | request_access, open_application, list_granted_applications, switch_display | | Utility | cursor_position, wait, computer_batch |

Screenshots are captured at full Retina resolution and scaled to fit model constraints (≤1568px, ≤1.15MP). Click coordinates from the model are automatically mapped back to logical screen coordinates for CGEvent dispatch.

Permission tiers

App access is tiered by category, matching the behaviour of Claude Code's built-in computer use:

| Tier | Applies to | What the model can do | |---|---|---| | View-only | Browsers (Safari, Chrome, Firefox, Edge, Arc, Brave…), trading platforms | Screenshot only | | Click-only | Terminals (Terminal, iTerm, Ghostty, Warp), IDEs (VS Code, Cursor, JetBrains…) | Click and scroll, no typing | | Full control | Everything else | All actions |

Use cases

  • Test native apps — compile a macOS or iOS target, launch it, click through every screen, and screenshot error states, all in one conversation.
  • Reproduce visual bugs — resize windows to trigger layout regressions, capture the broken state, patch the CSS, verify the fix.
  • Drive GUI-only tools — interact with design tools, hardware panels, simulators, or any app without a CLI or API.
  • End-to-end UI flows — walk through onboarding, checkout, or admin flows and report what you find.

Requirements

  • macOS (Apple Silicon or Intel)
  • Node.js 18+
  • Claude.app installed at /Applications/Claude.app
  • Accessibility and Screen Recording permissions granted to the process that spawns the server (your terminal app or IDE)

Installation

git clone https://github.com/NicolaivdSmagt/computer-use-mcp.git
cd computer-use-mcp
npm install

Enable in Claude Code

Add the server to ~/.claude.json:

{
  "mcpServers": {
    "computer-use": {
      "command": "node",
      "args": ["/absolute/path/to/computer-use-mcp/index.js"]
    }
  }
}

Restart Claude Code. The tools appear as mcp__computer-use__* in your session.

Enable in OpenCode

Add to your OpenCode config (~/.config/opencode/config.json or equivalent):

{
  "mcp": {
    "servers": {
      "computer-use": {
        "command": "node",
        "args": ["/absolute/path/to/computer-use-mcp/index.js"]
      }
    }
  }
}

Granting macOS permissions

The server checks both permissions at startup and exits with a clear error if either is missing.

  1. Open System Settings → Privacy & Security → Accessibility — add and enable your terminal app (or the app that launches the server).
  2. Open System Settings → Privacy & Security → Screen Recording — do the same.

Permissions are inherited by child processes, so you only need to grant them to the parent process once.

Session model

Every session starts with an empty allowlist. Call request_access first with the apps you need:

request_access(apps: ["Safari"], reason: "Navigate to the app and verify the onboarding flow")

The response tells you the tier granted for each app. From that point, Claude can call open_application, screenshot, and the interaction tools that the tier permits. The allowlist resets when the server process exits.

How it works

The server wraps two native NAPI binaries bundled inside Claude.app:

  • computer_use.node — screenshot capture (captureExcluding, captureRegion), display enumeration, app management, TCC permission checks. Its async methods require the macOS run loop to be drained explicitly; the server handles this internally.
  • claude-native-binding.node — mouse events (moveMouse, mouseButton, mouseScroll), keyboard (keys, typeText), cursor position, frontmost app info.

No Electron, no AppleScript, no Accessibility API polling. Both binaries dispatch real CGEvents directly into the macOS event system.

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use AI & ML servers.