computer-use-mcp
Allows capturing screenshots of the Arc browser on macOS, enabling visual analysis of web content. (View-only tier)
Allows capturing screenshots of the Brave browser on macOS, enabling visual analysis of web content. (View-only tier)
Allows capturing screenshots of the Firefox browser on macOS, enabling visual analysis of web content. (View-only tier)
Allows clicking and scrolling within JetBrains IDEs on macOS, enabling navigation and interaction with the IDE without typing. (Click-only tier)
Allows capturing screenshots of the Safari browser on macOS, enabling visual analysis of web content. (View-only tier)
Allows clicking and scrolling within the Warp terminal on macOS, enabling terminal interaction without typing. (Click-only tier)
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., "@computer-use-mcpopen Safari and take a screenshot"
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.
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 |
|
Mouse |
|
Keyboard |
|
Clipboard |
|
Apps |
|
Utility |
|
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.
Related MCP server: mcp-desktop
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.appAccessibility 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 installEnable 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.
Open System Settings → Privacy & Security → Accessibility — add and enable your terminal app (or the app that launches the server).
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.
This server cannot be installed
Maintenance
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
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/NicolaivdSmagt/computer-use-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server