
How to add Terminator MCP Agent to Claude Desktop
Computer-use MCP server that automates Windows desktop and browser apps via the accessibility tree. Paste the config into ~/Library/Application Support/Claude/claude_desktop_config.json and restart Claude Desktop.
Last updated June 14, 2026 · 1.5k★ · stdio · no auth · official
Claude Desktop config for Terminator MCP Agent
npx -y terminator-mcp-agent@latest --add-to-app{
"mcpServers": {
"terminator-mcp-agent": {
"command": "npx",
"args": [
"-y",
"terminator-mcp-agent@latest"
],
"env": {
"LOG_LEVEL": "info",
"RUST_BACKTRACE": "1"
}
}
}
}Setup steps
- 1Open Claude Desktop → Settings → Developer → Edit Config (this opens ~/Library/Application Support/Claude/claude_desktop_config.json).
- 2Paste the Terminator MCP Agent config below under the top-level "mcpServers" key.
- 3Fill in any placeholder secrets (API keys, paths) in the snippet.
- 4Save the file, then fully quit and reopen Claude Desktop.
- 5Open a chat and confirm Terminator MCP Agent's tools appear under the 🔌 tools menu.
Before you start
- Windows (Windows 10/11 or Windows Server 2016+); macOS and Linux are not supported
- Node.js v16+ (for the npx-based launch)
- An MCP-compatible client (Claude Code, Cursor, VS Code, Windsurf, etc.)
- Chrome extension installed for browser automation features
- Accessibility Insights for Windows or Inspect.exe (optional, to author reliable selectors)
What Terminator MCP Agent can do in Claude Desktop
get_window_treeRetrieve the accessibility/UI element tree for a window or process, with options to limit depth, start from a selector, and choose output format.
get_applications_and_windows_listList running applications and open windows so workflows can discover and target them.
open_applicationLaunch an application by path or name (e.g. calc.exe).
click_elementClick a UI element resolved by a selector, with actionability validation (visibility, enabled, stable).
invoke_elementInvoke an element via the accessibility API as an alternative to a physical click.
activate_elementBring an element or its window to the foreground / give it focus.
type_into_elementType text into a targeted UI element.
press_keySend keyboard key presses to a focused element.
Security
Grants AI assistants full control over the desktop and any application, including the user's logged-in browser session, cookies, and auth. Never hard-code credentials in workflows—use environment variables or a secret manager. Workflows are code: store them in version control and review changes. Run with elevated/administrator privileges only when accessibility features require it.
Terminator MCP Agent + Claude Desktop FAQ
Where is the Claude Desktop config file?
Claude Desktop reads MCP servers from ~/Library/Application Support/Claude/claude_desktop_config.json. Paste the Terminator MCP Agent config there under the "mcpServers" key and restart the client.
Is Terminator MCP Agent safe to use with Claude Desktop?
Grants AI assistants full control over the desktop and any application, including the user's logged-in browser session, cookies, and auth. Never hard-code credentials in workflows—use environment variables or a secret manager. Workflows are code: store them in version control and review changes. Run with elevated/administrator privileges only when accessibility features require it.
Which operating systems are supported?
Windows only. The README explicitly states macOS and Linux are not supported.
How do I install it in Claude Code?
Run the one-liner: claude mcp add terminator "npx -y terminator-mcp-agent@latest". For other clients, add the mcpServers block with command "npx" and args ["-y", "terminator-mcp-agent@latest"], or run npx -y terminator-mcp-agent@latest --add-to-app.
Does it take over my mouse and keyboard?
No. It runs in the background using the accessibility tree and your browser session, so it does not hijack your cursor or keyboard or require you to re-login.