device-controller-mcp
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., "@device-controller-mcptake a screenshot of my current window"
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.
device-controller-mcp
An MCP (Model Context Protocol) server that lets Claude Desktop and Claude Code control your computer — take screenshots, click, type, manage windows, and more.
⚠️ Security notice: This server grants an AI assistant direct control over your mouse, keyboard, clipboard, and shell (including
run_command, which executes arbitrary commands). Only run it on machines you own, prefer--appscoping over--full, and review actions before trusting them. See Security.
Features
Two scope modes — lock every action to a single app window (
--app), or grant full-desktop access (--full).Cross-platform — macOS and Windows, with a clean platform abstraction layer.
Screenshot capture (full screen or single window) returned as base64 PNG.
Mouse & keyboard — clicks, typing, key combos, scrolling.
Window management — list, focus, resize, minimize, maximize.
Clipboard read / write.
Shell commands — launch apps, run commands, check running processes.
Related MCP server: computer-use-windows
Requirements
Python 3.10+
macOS or Windows
Installation
With uv (recommended)
git clone https://github.com/geojakes/device-controller-mcp.git
cd device-controller-mcp
uv syncThis creates a virtual environment and installs everything you need. On Windows
the pywin32 backend is pulled in automatically. Run the server with uv run:
uv run device-controller-mcp --fullYou can also run it without cloning, straight from the repo, via
uvx:
uvx --from git+https://github.com/geojakes/device-controller-mcp device-controller-mcp --fullmacOS (optional): the server works out of the box using AppleScript, but installing the Quartz extra gives faster, more accurate window bounds:
uv sync --extra macosWith pip
git clone https://github.com/geojakes/device-controller-mcp.git
cd device-controller-mcp
pip install -e . # add ".[macos]" on macOS for the optional Quartz backendpywin32 (required on Windows) is selected automatically. The macOS Quartz
backend is optional — without it the server falls back to AppleScript.
Usage
Scoped to a single app
device-controller-mcp --app "Google Chrome"All screenshots, clicks, and coordinates will be relative to Chrome's window. The server auto-focuses Chrome before every action.
Full desktop
device-controller-mcp --fullScreenshots capture the whole screen and coordinates are screen-absolute.
Registering with Claude Desktop
Automatic (recommended)
The install command finds your OS's claude_desktop_config.json, merges in a
server entry (leaving any existing servers untouched), and writes a .bak
backup first:
# Full-desktop access
device-controller-mcp install --full
# Or scoped to one app
device-controller-mcp install --app "Google Chrome"Useful flags: --name KEY to set the server key, --command PATH to override
the executable, --config FILE to target a specific file, and --dry-run to
preview the change without writing. Restart Claude Desktop afterward.
To remove it again:
device-controller-mcp uninstall # removes the "device-controller" key
device-controller-mcp uninstall --name device-controller-google-chromeManual
Add an entry to your claude_desktop_config.json by hand.
Config file location:
OS | Path |
macOS |
|
Windows |
|
Full-desktop mode
{
"mcpServers": {
"device-controller": {
"command": "device-controller-mcp",
"args": ["--full"]
}
}
}Scoped to one app
{
"mcpServers": {
"device-controller-chrome": {
"command": "device-controller-mcp",
"args": ["--app", "Google Chrome"]
}
}
}Tip: If you installed inside a virtualenv, use the full path to the executable, e.g.
"/path/to/venv/bin/device-controller-mcp".
Registering with Claude Code
claude mcp add device-controller -- device-controller-mcp --fullOr scoped:
claude mcp add device-controller-chrome -- device-controller-mcp --app "Google Chrome"Tools reference
Tool | Description |
| Capture screen or app window as base64 PNG. Optional sub-region crop. |
| Click at (x, y) — configurable button and click count. |
| Move cursor to (x, y) without clicking. |
| Scroll up/down at a position. |
| Type a string. Supports clipboard-paste mode for Unicode. |
| Press keys or combos ( |
| List all visible windows with title, position, and size. |
| Bring a window to the foreground. |
| Move and resize a window. |
| Minimize a window. |
| Maximize a window to fill the screen. |
| Read the system clipboard. |
| Write text to the clipboard. |
| Open an application by name. |
| Run a shell command and return stdout/stderr/exit code. |
| Check whether a named process is running. |
macOS permissions
On macOS you need to grant Accessibility access to your terminal app
(or to Claude Desktop) in System Settings > Privacy & Security > Accessibility.
This is required for pyautogui to control the mouse and keyboard.
Project structure
device-controller-mcp/
├── pyproject.toml
├── uv.lock # generated by `uv lock` / `uv sync`
├── .python-version # Python pin used by uv
├── requirements.txt
├── README.md
└── src/
└── device_controller_mcp/
├── __init__.py
├── __main__.py # CLI entry point (run / install / uninstall)
├── install.py # OS-aware Claude Desktop config registration
├── server.py # FastMCP server factory
├── scope.py # Scope manager (coord translation + auto-focus)
├── platform_layer/
│ ├── __init__.py # Platform detection factory
│ ├── base.py # Abstract base class + WindowInfo
│ ├── macos.py # macOS: Quartz + AppleScript
│ └── windows.py # Windows: pywin32
└── tools/
├── __init__.py
├── screenshot.py # Screen / window capture
├── input_control.py # Mouse & keyboard
├── window_mgmt.py # Window management
├── clipboard.py # Clipboard read/write
└── shell.py # Shell commands & app launcherDevelopment
This project uses uv. Common tasks:
uv sync # create the venv and install deps (+ dev tools)
uv run device-controller-mcp --full # run the server
uv lock # regenerate the lockfile after changing deps
uv run ruff check . # lintNote:
uv.lockis committed so everyone resolves identical dependency versions. If it isn't present yet, runuv lockonce and commit the result.
Security
This server gives an AI assistant real control over your machine. Treat it accordingly:
Arbitrary code execution. The
run_commandtool runs any shell command, andtype_text/key_presscan drive any application. There is no sandbox.Prefer scoped mode.
--app "<name>"keeps screenshots and coordinates bound to a single window. Use--fullonly when you genuinely need whole-desktop access.Run it locally and trusted. Only register this server with clients you control, on machines you own. Never expose it to untrusted input or networks.
Review before trusting. Watch what the assistant does, especially the first time you use it with a new workflow.
Found a vulnerability? Please open a private security advisory on GitHub rather than a public issue.
License
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/geojakes/device-controller-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server