MCP server for desktop, browser (CDP), and Android automation. Screenshot, OCR, click, type.
io.github.sh3ll3x3c/native-devtools โ MCP Server
This Model Context Protocol (MCP) server provides tools for computer use across native desktop and mobile apps. It supports macOS, Windows, Android, and browser/Electron automation via CDP (Chrome DevTools Protocol). Capabilities include screenshot capture, OCR, and UI automation actions such as clicking and typing.
๐ ๏ธ Key Features
Screenshot
OCR
Click
Type
Desktop and mobile automation
Browser/Electron automation via CDP
๐ Use Cases
Automating interactions in native apps on macOS and Windows
Performing mobile automation on Android
Driving browser or Electron flows using Chrome DevTools Protocol (CDP)
Supporting end-to-end testing workflows
โก Developer Benefits
Works with MCP (model-context-protocol)
Integrates computer-use tooling for AI-agent workflows
Coverage of desktop, mobile, and CDP-based browser automation
Includes topics aligned with ai-agent and e2e-testing
โ ๏ธ Limitations
Tooling scope is limited to screenshot, OCR, and click/type UI automation as described
Browser automation is specifically tied to CDP (Chrome/Electron)
An MCP server for computer use on native desktop and mobile apps โ macOS, Windows, Android, and Chrome/Electron via CDP.
Downloads
Add to your client in one click:
Claude Code:claude mcp add native-devtools -- npx -y native-devtools-mcp
native-devtools-mcp gives AI agents and MCP clients direct control over native desktop apps, Chrome/Electron browsers, and Android devices โ screenshots, OCR, accessibility-first element lookup, input simulation, window management, Chrome DevTools Protocol (CDP), and ADB โ all in one local server. Works with Claude Desktop, Claude Code, Cursor, and other MCP-compatible clients.
Quickstart
bash
npx -y native-devtools-mcp
macOS
Windows
macOS Demo
Windows Demo
๐ Features
๐ Computer Vision: Screenshots of screens, windows, or regions with built-in OCR (Vision on macOS, Windows Media OCR on Windows).
๐ฑ๏ธ Input Simulation: Click, drag, scroll, type โ global coordinates, window-relative, and screenshot-relative targeting.
๐ฏ Element-Precise AX Dispatch (macOS):take_ax_snapshot โ ax_click / ax_set_value / ax_select โ dispatch against Accessibility-tree elements without moving the mouse or stealing focus. The preferred path for native macOS apps.
๐ Browser Automation (CDP): Chrome DevTools Protocol for Chrome and Electron apps (Signal, Discord, VS Code, Slack) โ DOM-level click, fill, navigate, and JS evaluation without a separate Node.js server.
๐ฑ Android (ADB): Screenshots, uiautomator-based text lookup, input, and app management over USB or Wi-Fi.
๐งฉ Template Matching:load_image + find_image for icons, toggles, and custom controls OCR can't identify.
๐ช Window Management: List, focus, launch, and quit apps; record windows as timestamped JPEG frames.
๐ Hover Tracking: Observe user navigation patterns with dwell-filtered hover events โ designed for LLMs watching a user work.
๐ Local & Private: 100% local execution. Screenshots and input never leave your machine.
๐งญ Three Approaches to Interaction
Pick the approach that matches your target app.
Approach
Best for
Key tools
Visual (universal)
Any app โ games, Qt, custom renderers, anything without an AX tree
For macOS native apps, AX Dispatch is the preferred path โ it's element-precise, doesn't move the mouse, and doesn't steal focus. See the Native App AX Dispatch recipe.
There's also a fourth, niche path: AppDebugKit (app_connect / app_query / app_click) for apps instrumented with the AppDebugKit library. Mostly useful for developers testing their own apps.
๐ How it compares
The most honest peers are other MCP servers for computer use. This table compares native-devtools-mcp against the leading MCP servers and two widely used non-MCP libraries.
Where native-devtools-mcp stands out: one local MCP server covering macOS + Windows + Chrome/Electron (CDP) + Android in the same session, plus element-precise macOS AX dispatch that doesn't move the cursor or steal focus.
Honest limits:
No Linux (contributions welcome โ see Linux Desktop MCP for an AT-SPI2-based alternative in the meantime)
Browser automation is Chrome / Electron only via CDP โ no Firefox, no WebKit (for those, use Playwright MCP)
Headed only โ depends on real-machine permissions; not a headless CI test grid
No iOS
If you need just web automation, Playwright MCP is more mature. If you need just mobile (iOS + Android + deep device features), Appium is more mature. This server is for the cross-cutting native-desktop + Chrome/Electron + Android case.
๐ฆ Installation
The install steps are identical on macOS and Windows.
Option 1: Run with npx (no install needed)
bash
npx -y native-devtools-mcp
Option 2: Global install
bash
npm install -g native-devtools-mcp
Option 3: Build from source (Rust)
Click to expand build instructions
Using the build script (clones, builds, and runs setup):
macOS permissions: the server needs Accessibility and Screen Recording permissions. The setup wizard opens the right System Settings panes for you. Without both, clicks silently fail and screenshots return a black rectangle.
Linux is not supported yet. The server uses platform-specific APIs (Core Graphics + Accessibility on macOS, Win32 + UI Automation on Windows) that don't exist on Linux. Contributions welcome โ X11/Wayland screenshot, input, and AT-SPI paths would be a good first issue.
๐ Getting Started
After installing, run the setup wizard:
bash
npx native-devtools-mcp setup
This will:
Check permissions (macOS) โ verifies Accessibility and Screen Recording, opens System Settings if needed.
Detect your MCP clients โ finds Claude Desktop, Claude Code, and Cursor.
Write the configuration โ generates the correct JSON config and offers to write it for you.
Then restart your MCP client and you're ready to go.
Claude Desktop on macOS requires the signed app bundle (Gatekeeper blocks npx). Download NativeDevtools-X.X.X.dmg from GitHub Releases, drag to /Applications, then run setup โ it will detect the app and configure Claude Desktop to use it.
VS Code, Windsurf, and other clients:setup doesn't auto-detect these yet. Run setup for the permission checks, then see the manual configuration above for the JSON config snippet.
Claude Code tip: To avoid approving every tool call (clicks, screenshots), add this to .claude/settings.local.json:
Hands off: when the agent is "driving" (clicking / typing), don't move your mouse or type. Real hardware inputs conflict with simulated ones and clicks land in the wrong place.
Focus matters: ensure the window you want the agent to use is visible. If a popup steals focus mid-flow, the agent may type into the wrong window unless it re-checks first.
Prefer AX Dispatch on macOS when you want to keep using the machine โ AX calls don't move the cursor and don't steal focus from whatever window is active.
Connect to Chrome or Electron apps via the Chrome DevTools Protocol for DOM-level automation โ more reliable than coordinate-based clicking for web content.
bash
# Launch Chrome with remote debugging
launch_app(app_name="Google Chrome", args=["--remote-debugging-port=9222", "--user-data-dir=/tmp/chrome-profile"])
# Connect and automate
cdp_connect(port=9222)
cdp_navigate(url="https://example.com")
cdp_find_elements(query="search") # DOM walker with element UIDs (d1, d2, ...)
cdp_fill(uid="d1", value="search query")
cdp_press_key(key="Enter")
cdp_wait_for(text=["Results"])
18 CDP tools โ DOM snapshot, find elements, click, hover, fill, type, press key, navigate, handle dialogs, manage tabs, evaluate JS, element inspection, and more. Works with Chrome 136+, Chromium, and Electron apps (Signal, Discord, VS Code, Slack). See AGENTS.md for the full tool reference.
Chrome 136+ note: requires --user-data-dir=<path> alongside --remote-debugging-port โ Chrome silently ignores the debug port with the default profile. Electron apps only need --remote-debugging-port.
๐ฑ Android Support
Android support is built-in. The server communicates with Android devices over ADB (USB or Wi-Fi), providing screenshots, input simulation, UI element search, and app management.
Prerequisites
ADB installed on the host (brew install android-platform-tools on macOS, or via Android SDK).
USB debugging enabled on the device (Settings > Developer options > USB debugging).
ADB server running โ starts automatically when you run adb devices.
Tools
All Android tools are prefixed with android_ and appear dynamically after connecting to a device:
Tool
Description
android_list_devices
List all ADB-connected devices (always available)
android_connect
Connect to a device by serial number
android_disconnect
Disconnect from the current device
android_screenshot
Capture the device screen
android_find_text
Find UI elements by text (via uiautomator)
android_click
Tap at screen coordinates
android_swipe
Swipe between two points
android_type_text
Type text on the device
android_press_key
Press a key (e.g., KEYCODE_HOME, KEYCODE_BACK)
android_launch_app
Launch an app by package name
android_list_apps
List installed packages
android_get_display_info
Get screen resolution and density
android_get_current_activity
Get the current foreground activity
Typical workflow
code
android_list_devices โ find your device serial
android_connect(serial="...") โ connect (unlocks android_* tools)
android_screenshot โ see what's on screen
android_find_text(text="OK") โ locate a button
android_click(x=..., y=...) โ tap it
Known issues & advanced setup
MIUI / HyperOS (Xiaomi, Redmi, POCO devices): input injection (android_click, android_type_text, android_press_key, android_swipe) and android_find_text (via uiautomator) require an additional security toggle:
Settings > Developer options > USB debugging (Security settings) โ enable this toggle. MIUI may require you to sign in with a Mi account to enable it.
Without this, you'll see INJECT_EVENTS permission errors for input tools and could not get idle state errors for android_find_text. Screenshot and device info tools work without this toggle.
Wireless ADB: to connect without a USB cable, first connect via USB and run:
bash
adb tcpip 5555
adb connect <phone-ip>:5555
Then use the <phone-ip>:5555 serial in android_connect.
Smoke tests: verify all Android tools against a real connected device. They are #[ignore]d by default:
bash
cargo test --test android_smoke_tests -- --ignored --test-threads=1
Tests must run sequentially since they share a single physical device. The device must be unlocked and awake.
๐ Security & Trust
This tool requires Accessibility and Screen Recording permissions โ that's a lot of trust. Here's how to verify it deserves it.
Verify your binary
bash
native-devtools-mcp verify
Computes the SHA-256 hash of the running binary and checks it against the official checksums published on the GitHub Releases page. If the hash matches, you're running an unmodified official build.
Audit the code
SECURITY_AUDIT.md documents exactly which permissions are used, where in the source code, and includes an LLM audit prompt you can paste into any AI model for an independent security review.
What this server does NOT do
No unsolicited network access. The server never phones home. Network is only used when the MCP client explicitly invokes app_connect (WebSocket to a local debug server) or when you run the verify subcommand (fetches checksums from GitHub).
No file scanning. Does not read or index your files. The only file reads are load_image (a path the MCP client explicitly provides) and short-lived temp files for screenshots (deleted immediately after capture).
No background persistence. Exits when the MCP client disconnects.
No data exfiltration. Screenshots are returned to the MCP client via stdout, never stored or transmitted elsewhere.
โ FAQ
Does it work on Linux? Not yet โ macOS, Windows, and Android only. The server uses Core Graphics + Accessibility APIs on macOS and Win32 + UI Automation on Windows. An X11/Wayland + AT-SPI port would be a welcome contribution.
Does it need an API key? No. The server runs entirely locally and makes no outbound API calls. Your MCP client may need its own LLM API key (Anthropic, OpenAI, etc.), but the server itself does not.
How is this different from Claude Computer Use? Claude Computer Use is an Anthropic API beta tool โ it works with Claude Opus, Sonnet, and Haiku behind a beta header and requires an Anthropic API key. It operates via screenshots + coordinate-based mouse/keyboard actions. native-devtools-mcp is model-agnostic (anything that speaks MCP), runs 100% locally with no API dependency, and adds element-precise macOS AX dispatch, Chrome DevTools Protocol, and Android over ADB.
Does it work with local models (Ollama, LM Studio, etc.)? Yes โ as long as the client speaks MCP. Any MCP-compatible client can connect. Non-MCP clients can wrap the server behind a bridge.
Is it free / open source? Yes, MIT-licensed. See LICENSE.
Does it record what I'm doing? No โ unless you explicitly call start_recording, which writes to a directory you specify and stops on stop_recording. Hover tracking likewise runs only while start_hover_tracking is active. Nothing is recorded or sent anywhere otherwise.
How does it compare to Playwright or Playwright MCP? Playwright is the mature choice for pure web automation โ Chromium, Firefox, and WebKit, plus first-class Electron support via _electron.launch() and experimental Android automation. Playwright MCP wraps it as an MCP server for AI agents. If you only need web / Electron automation, use Playwright MCP. native-devtools-mcp covers native macOS / Windows apps and Android devices in addition to Chrome/Electron, in one local MCP server โ which Playwright MCP does not.
Window captures (macOS): uses screencapture -o which excludes window shadow. Captured dimensions match kCGWindowBounds ร scale exactly, so click coordinates derived from screenshots land on intended UI elements.
Region captures: origin coordinates are aligned to integers to match the actual captured area.
๐ช Windows Notes
Works out of the box on Windows 10/11.
Uses standard Win32 APIs (GDI, SendInput).
find_text uses UI Automation (UIA) as the primary search mechanism, querying the accessibility tree for element names. This is the same accessibility-first approach used on macOS. Falls back to OCR automatically when UIA finds no matches.
OCR uses the built-in Windows Media OCR engine (offline).
Cannot interact with "Run as Administrator" windows unless the MCP server itself is also running as Administrator.
Screen recording uses GDI/BitBlt at configurable fps (default 5). For higher fps or game capture, DXGI Desktop Duplication API would provide hardware-accelerated capture โ a planned future upgrade.
๐ค For AI Agents
Agent-oriented usage โ intent definitions, schema examples, reasoning patterns โ lives in AGENTS.md. It's a compact, token-optimized reference designed for ingestion by LLMs (Claude, Gemini, GPT, local models). If you're an AI agent reading this README to decide whether to use the server, go there next.