dual-wield-mcp
MCP server for controlling Linux desktops over Wayland, enabling AI agents to perform mouse, keyboard, window, and screenshot operations on Fedora KDE Plasma.
README
dual-wield-mcp
MCP (Model Context Protocol) server exposing Linux desktop control to AI agents over Wayland, for Fedora Linux with KDE Plasma only. Built for dual-client compatibility with Claude Code and Hermes Agent.
Status
v1.13.0 — Phases 1-12 and 15-17 complete; Phase 13 (session initialization and permission warm-up) mostly complete. Phase 14 (Concurrent Input Detection) is exploratory, no version target. See ROADMAP.md.
Tip: call focus_window before type_text/key_press to target a specific window —
synthetic mouse clicks alone do not reliably transfer keyboard focus on KWin (see
ROADMAP.md Phase 2/3 for details).
Requirements
- Fedora Linux with KDE Plasma (Wayland), Python 3.14+
spectaclefor screenshot capture (KDE's native screenshot tool —grim/slurpwere tried first but depend on thewlr-screencopyprotocol, which KWin does not implement)ydotoolfor input control, withydotooldrunning as a user-level systemd service (requires/dev/uinputaccess — see uinput Permission Setup in ROADMAP.md)kdotool(KDE) orwlrctl(other wlroots compositors) for window managementwl-clipboard(wl-copy/wl-paste) forclipboard_set/clipboard_gettesseract(OCR engine) forfind_text- Pillow and pytesseract (installed automatically as Python dependencies) for
inspect_region's image cropping andfind_text's OCR — no manual setup beyond thetesseractbinary above
Installation
Not published to PyPI yet — install from a local clone with uv
as an isolated tool, so the dual-wield-mcp command lands on your PATH (at
~/.local/bin) where MCP clients can find it:
git clone <this-repo>
uv tool install ./dual-wield-mcp
For local development instead (editable install inside a project-local venv — note the
entry point then lives at .venv/bin/dual-wield-mcp, not on your global PATH):
uv venv .venv --python 3.14
uv pip install --python .venv/bin/python -e .
System dependencies (Fedora):
sudo dnf5 install kde-spectacle ydotool kdotool wlrctl wl-clipboard tesseract
ydotoold must run as your user, not root (the packaged system unit runs as root, which
leaves the daemon socket unusable by your session). Create
~/.config/systemd/user/ydotoold.service with:
[Unit]
Description=ydotool daemon (user session)
[Service]
Type=simple
Restart=on-failure
ExecStart=/usr/bin/ydotoold
KillMode=process
[Install]
WantedBy=default.target
Then enable it:
systemctl --user daemon-reload
systemctl --user enable --now ydotoold.service
Usage
Run the server directly:
dual-wield-mcp
Claude Code registration
Recommended — via the CLI (registers at local scope, personal to you and this project):
claude mcp add dual-wield -- dual-wield-mcp
Use --scope project instead to write the registration to .mcp.json in the repo root
and share it with your team via git.
Manual alternative — add this to .mcp.json (project scope) yourself:
{
"mcpServers": {
"dual-wield": {
"type": "stdio",
"command": "dual-wield-mcp"
}
}
}
Hermes Agent registration
hermes mcp add dual-wield --command dual-wield-mcp
dual-wield is just the label Hermes stores the server under; --command is the actual
binary to launch (verified against a real Hermes Agent v0.13.0 install — hermes mcp add
requires an explicit --command or --url, a bare server name alone is not enough).
Recommended agent configuration
For best performance, specify in your agent's configuration (CLAUDE.md, AGENT.md, or
equivalent project instructions) that it should perform all desktop navigation and
interaction through this MCP server's tools — not a mix of manual shell commands, other
tools, and this server. Mixing approaches means some actions still go through ad hoc,
dynamically-constructed shell commands, which can trigger a permission prompt on every
single invocation regardless of any allowlist entry (Claude Code flags shell syntax it
cannot statically analyze, such as command substitution, every time). Each such prompt
interrupts the agent mid-task and requires clicking into the agent's own window to
respond, which can itself change focus on the desktop being automated. Routing
everything through this server's typed, schema-validated tools avoids that class of
prompt entirely once the tools are allowlisted by name.
For clients that support pre-approving tools by name (Claude Code's
.claude/settings.json/settings.local.json, via permissions.allow), pre-populate
it with every tool listed under Tools below, rather than letting each one hit its own
first-use approval prompt scattered across a session. Confirmed live: doing this
eliminates a fresh session's scattered-prompt problem entirely, with no server changes
needed. List each tool explicitly as mcp__dual-wield__<tool_name> (e.g.
mcp__dual-wield__mouse_click) — a mcp__dual-wield__* wildcard entry is also
accepted, but community reports (anthropics/claude-code issues #3107, #6010) say the
wildcard form alone isn't always honored, so keep the explicit per-tool list alongside
it rather than relying on the wildcard by itself.
A note on the desktop session environment
MCP clients (including the reference Python SDK used by Claude Code) only pass a small,
curated allowlist of environment variables to the server subprocess by default — HOME,
LOGNAME, PATH, SHELL, TERM, USER. WAYLAND_DISPLAY, DBUS_SESSION_BUS_ADDRESS,
and XDG_RUNTIME_DIR are not included, which breaks every tool here (spectacle,
kdotool, ydotool all need at least one of them). dual-wield-mcp fills in the
standard systemd-user-session defaults for these at startup if they're missing
(/run/user/<uid>, unix:path=<runtime_dir>/bus, wayland-0), so this works
out of the box for the common single-session desktop. If you run multiple Wayland
sessions or a non-standard setup, override them explicitly via the client's env config
for the server (e.g. an "env": {"WAYLAND_DISPLAY": "wayland-1"} block).
Configuration
Environment variables (all optional):
| Variable | Default |
|---|---|
DUAL_WIELD_SCREENSHOT_DIR |
~/.local/share/dual-wield-mcp/screenshots |
DUAL_WIELD_SPECTACLE_PATH |
spectacle |
DUAL_WIELD_YDOTOOL_PATH |
ydotool |
DUAL_WIELD_KDOTOOL_PATH |
kdotool |
DUAL_WIELD_WLRCTL_PATH |
wlrctl |
DUAL_WIELD_KSCREEN_DOCTOR_PATH |
kscreen-doctor |
DUAL_WIELD_WL_COPY_PATH |
wl-copy |
DUAL_WIELD_WL_PASTE_PATH |
wl-paste |
DUAL_WIELD_TESSERACT_PATH |
tesseract |
DUAL_WIELD_WINDOW_BACKEND |
auto (auto, kde, or wlroots) |
DUAL_WIELD_LOG_LEVEL |
INFO |
Tools
initialize()— call this once, as the first action in a new session, before any task-driven tool use. Pre-warmsmouse_move's pointer calibration (the first real click of a fresh session can otherwise land off-target while that calibration is still converging) and returns a snapshot of session-start desktop state — display scale, detected window backend, and (KDE backend only) a fresh window listing — instead of rediscovering it reactively call by call.screenshot(mode="full"|"region", output_path=None, include_image=True)— captures the desktop viaspectaclein background mode, optionally selecting a region first via an on-screen drag selection. Returns the saved file's absolute path as text, followed by the captured image. Passinclude_image=Falseto return only the path when the screenshot is just input tofind_text/click_textand won't be viewed directly — skips sending the image for vision processing.inspect_region(path, x, y, width, height, output_path=None)— crops a rectangular region out of an existing screenshot for close-up pixel inspection, without shelling out tomagick/identify. Returns the cropped file's absolute path as text, followed by the cropped image.mouse_move(x, y, space="physical")— move the pointer to an absolute screen position.space="logical"acceptsget_windows/move_window-style coordinates directly, converting via the display scale instead of requiring the caller to do it by hand.mouse_click(button="left", x=None, y=None, space="physical", expected_window_class=None, double=False)— click a mouse button (left,right,middle,side,extra,forward,back,task). Passx/y(and optionallyspace, same meaning asmouse_move's) to move the pointer there first and click in one call — required together, and removes the MCP round trip a separatemouse_move+mouse_clickpair leaves open for the user's own live mouse movement to land in; omit both to click wherever the pointer already is. Ifexpected_window_classis given, verifies the focused window's class (after any move, immediately before clicking) and raisesToolErroron a mismatch instead of clicking a possibly stale target (KDE backend only). Passdouble=Trueto double-click (two clicks within this one call, separated by a short server-side delay) — two separatemouse_clickcalls do not reliably register as a double-click, since the round trip between them is slower than the desktop's double-click timing threshold.key_press(keys)— press a key or+-joined combination (e.g."ctrl+shift+t").type_text(text, expected_window_class=None)— type a literal string. Ifexpected_window_classis given, verifies the focused window's class both before and after typing, raisingToolErroron a mismatch — the post-check catches focus drift (e.g. the user alt-tabbing) mid-action (KDE backend only). The internal timeout scales with the string's length instead of a flat ceiling, since simulated per-character typing takes real, length-proportional time; if it still times out, the error explicitly warns that partial text may already be in the focused window rather than failing silently. Preferclipboard_set+key_press("ctrl+v")over this for long or special-character strings.get_windows()— list visible windows with id, title, class, pid, and position/size. KDE backend only (wlrctlhas no window-listing command). Note: position/size are in KWin's logical (HiDPI-scaled) pixels, which can differ from the physical pixels used byscreenshot/mouse tools.get_active_window()— metadata for the currently focused window, same fields asget_windows. KDE backend only. Use beforetype_text/key_pressto confirm the window you think is focused actually is, instead of trusting a staleget_windows/focus_windowresult.focus_window(window)— activate (focus and raise) a window by id (KDE) or title substring (either backend). Use this beforetype_text/key_pressto reliably target a specific window — see the Tip above.wait_for_window(title=None, window_class=None, timeout=10.0)— poll for a window matching a title substring and/or class, returning its metadata as soon as it appears instead of raising after a fixed sleep. Use this afterlaunch_appinstead of a manualget_windowspolling loop. KDE backend only.close_window(window)— close a window by id or title substring. KDE backend only (wlrctlhas no close action). Prefer this over a Bashkill <pid>, which needs a fresh permission grant for every never-before-seen pid.move_window(window, x, y)/resize_window(window, width, height)— move or resize a window by id or title substring, in KWin's logical pixels (same space asget_windows). KDE backend only. Goes through KWin's own scripting interface, so it works even where a launched application's own--window-position/--window-sizeflags are silently ignored by Wayland. Waits briefly before returning so a screenshot taken immediately after doesn't catch the window still animating into place.launch_app(command, args=None)— launch a desktop application via a directsubprocess.Popeninside the server, detached and not waited on. Prefer this over a Bash command to launch anything: a never-before-launched binary always needs a fresh Bash permission grant even as a literal command, while this tool only needs allowlisting once regardless of what's launched afterward. Position the new window withmove_window/resize_windowonce it appears, rather than a launch-time position flag.clipboard_set(text)/clipboard_get()— set or read the Wayland clipboard viawl-copy/wl-paste. Preferpaste_text(below) over calling this pluskey_press("ctrl+v")separately unless you need the clipboard set without pasting immediately.paste_text(text)—clipboard_setfollowed bykey_press("ctrl+v")in one server-side call. Prefer this overtype_textfor long or special-character strings (URLs, search queries) — pasting is a single atomic operation instead of simulated per-character typing, and this collapses the documented two-call pattern into one round trip. Focus the target field first, same astype_text/key_press.find_text(path, query, case_sensitive=False, window=None)— locate text in a screenshot via local OCR (tesseract), returning each matching line's text, bounding box, and center point in the same physical-pixel spacemouse_move/mouse_clickuse. Use this to click a specific labeled button, link, or menu item without a manual screenshot ->inspect_region-> eyeball-the-pixel loop. Not infallible — treat a single high-confidence match as safe to click directly, and fall back to a visual check on multiple matches or low confidence. Passwindow(a window id fromget_windows, or a title substring) to scope OCR to just that window's region — the screenshot is cropped to the window's bounds before OCR runs, and returned coordinates are translated back to absolute screen space. Use this whenever the query text could plausibly appear elsewhere on the desktop too (most commonly the calling agent's own visible terminal), since without scoping, OCR can merge real text from the target window with unrelated text from a different window into one line, silently shifting the match off target rather than cleanly refusing. KDE backend only.click_text(query, path=None, case_sensitive=False, button="left", min_confidence=40.0, expected_window_class=None, window=None)— findsqueryvia OCR and clicks it in one server-side call: captures a fresh screenshot ifpathis omitted, and only acts when there is exactly one match at or abovemin_confidence. No image is ever sent back for review on this path. Refuses (ToolError) on zero, multiple, or low-confidence matches instead of guessing — fall back tofind_textplus a visual check in that case.min_confidenceonly ever gates the single-remaining-candidate case (multiple matches are always refused regardless of confidence); OCR confidence is a noisy signal, not a reliable correctness proxy in either direction, so raise it to be more conservative or lower it if a real match is being refused for scoring low.windowhas the same scoping semantics asfind_text's parameter.read_screen_text(path=None, window=None)— likefind_textbut with no query filter: returns every detected line of text and its position, sorted top-to-bottom then left-to-right. Captures a fresh screenshot ifpathis omitted. Use this to read a whole board, grid, or list in one call (e.g. every revealed number in a puzzle game, or every row of a file list) instead of severalfind_textcalls or eyeballinginspect_regioncrops one at a time.windowscopes the read to one window's region, same semantics asfind_text— but note this is not automatically a strict improvement: cropping can occasionally cause tesseract to miss stylized/hyperlink text it would find with full-page context, so prefer scoping when disambiguating a click target and prefer a full, unscoped read when bulk-reading content matters more than excluding unrelated text.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。