kwin-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., "@kwin-mcplist all open windows"
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.
kwin-mcp
An MCP (Model Context Protocol) server that controls native Wayland windows on KDE Plasma from an AI agent.
It does what cua-driver cannot on Linux/Wayland: see and drive the real
desktop. cua-driver (trycua) only enumerates X11/XWayland clients, so on a
KDE Wayland session it sees 1 of ~20 windows. kwin-mcp sees all of them.
It is built entirely on KDE-native primitives, so it needs no modifications to
trycua's binary and no root daemon. You point your MCP client (Claude Code,
Codex, Hermes, etc.) at server.py and get the same capabilities cua offers on
X11: window listing, screenshots, clicks, typing, dragging, key presses, and
(optionally) AT-SPI element targeting.
Install
kwin-mcp targets KDE Plasma on Wayland. It is a Python MCP server, so any MCP host (Claude Code, Codex, Cursor, Zed, Hermes) can use it.
One command (recommended)
kwin-mcp-server is published to PyPI, so install is a single command with no
git clone and no build:
pipx install kwin-mcp-server # or: uv tool install kwin-mcp-server
kwin-mcp --doctor # print the readiness report
kwin-mcp # start the stdio MCP serverThen give it system access and wire it into your agent (both shown below).
System deps + input permission (one-time)
sudo pacman -S kdotool spectacle # Arch
sudo usermod -aG input "$USER" # allow /dev/uinput
# log out and back in so the new group appliesNot on Arch? See the Dependencies table below for the per-distro package names.
Wire it into your agent
Any MCP host can point at the kwin-mcp command. Use setup.sh for the
convenience of auto-wiring your agent's config (it preflights, prints exactly
what is missing, and never half-wires):
git clone https://github.com/Samthesurf/kwin-mcp.git /tmp/kwin-mcp && cd /tmp/kwin-mcp
./setup.sh hermes # or: claude | codex | cursor | zedOr wire it manually by running the kwin-mcp command in your agent's MCP
config. ./setup.sh verify launches the real server and confirms it reports
ready; ./setup.sh help prints usage; ./setup.sh check runs only the
preflight.
Manual run (no agent)
kwin-mcp # stdio MCP server
kwin-mcp --doctor # readiness report
kwin-mcp --check # dependency preflightRelated MCP server: screen-mcp
What it can do
Tool | Purpose |
| Enumerate every top-level window (native Wayland + XWayland), with UUID, title, class, pid, geometry |
| Return the currently focused window |
| Screenshot the desktop ( |
| Click at screen or window-local coordinates, OR target an element by |
| Drag between two points (screen or window-local) |
| Type a string into the focused target |
| Press a key, optionally with modifiers (e.g. |
| Scroll the wheel up/down |
| AT-SPI accessibility tree for a window (index, role, name, bounds, state flags, actions, editable) |
| Click an AT-SPI element by index |
| Invoke any AT-SPI action on an element (press, activate, toggle, ...) |
| Write a value to a settable element (text fields, sliders, spinners) |
| Move keyboard focus to an AT-SPI element directly (no pixel coords) |
| Report which element currently owns keyboard focus |
| Move keyboard focus next/prev through the focusable elements |
| Paste text via the Wayland clipboard + Ctrl+V (fast, preserves non-ASCII) |
| Window management |
| Current pointer location |
| Environment/dependency diagnostics |
| One JSON readiness report (platform, windowing, input, AT-SPI, screenshot, portals, blockers) |
| Computer History: is encrypted action-history capture on, and how much is stored? |
| Computer History: bounded, metadata-only slice of past kwin-mcp actions |
| Computer History: local enable/disable/pause/resume/flush/delete (user-owned) |
Windows are identified by a stable KDE window UUID of the form
{xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx} (exactly what kdotool prints).
Readiness report (doctor) and safety contract
doctor / kwin-mcp-doctor
Run kwin-mcp --doctor (or kwin-mcp-doctor) to get a single structured JSON
document describing the desktop, the windowing backend (with a live window
list probe), the input path, AT-SPI, the screenshot path, and XDG portal
availability. It ends with a readiness summary carrying explicit blockers
and a recommended_next_step, so an MCP host or a human can render one report
instead of parsing prose:
kwin-mcp --doctor | jq .readinessThe same report is exposed as the doctor MCP tool.
MCP safety annotations
Since v0.2 every tool carries an MCP ToolAnnotations so hosts can warn before
invoking a mutating tool:
Class | Tools | Contract |
Read-only observation |
|
|
UI-state mutators |
|
|
Desktop-action mutators |
|
|
Annotations are safety hints, not an authorization system. Treat any call that could submit, delete, send, or purchase as requiring user approval.
Computer History
A port of Cua Driver's encrypted, metadata-only Computer History preview
(libs/cua-driver/docs/computer-history-*.md). It gives you a local, inspectable
record of what kwin-mcp did, when, and which app it targeted, without turning the
server into a screen recorder or keylogger.
Privacy boundary (permanent): history records only fixed-field metadata. It
never stores screenshots, typed text, clipboard contents, raw tool arguments or
results, accessibility trees, window titles, URLs, or file paths. Every event is a
CloudEvents 1.0 envelope on urn:kwin-mcp:schema:history-event:v0.
Encrypted at rest: each event is sealed with AES-256-GCM before any bytes hit
disk (no plaintext fallback). The key is a 256-bit in-memory secret; delete
destroys the key and erases the store.
Opt-in, off by default. Nothing is recorded until you enable it. Agents can
only read history (history_status, history_query); capture lifecycle,
retention, and deletion are owned locally (mirroring Cua's
history_control_requires_local_cli).
Enable it from the server process (e.g. via the history_control tool, or a
local CLI), then let an agent query bounded slices:
{ "tool": "history_control", "arguments": { "operation": "enable" } }
{ "tool": "history_query", "arguments": { "limit": 50, "since_sequence": 1 } }Tool | Purpose |
| Read-only: supported, enabled, paused, encrypted, retention/quota, bytes used, dropped events, health. Never returns events. |
| Read-only: a bounded, metadata-only event slice ( |
| Local only: |
Recorded events cover the 14 mutating/action tools (click, drag, type_text,
paste, press_key, scroll, click_element, perform_action, set_value,
focus_element, activate, raise_window, minimize, close_window) as
action_started / action_completed envelopes, classified by effect
(confirmed, partial, unverifiable, suspected_noop, refused, failed) and route
(synthetic_events, trusted_input, global_input, accessibility, system_api).
Dependencies
System packages (must be installed on the machine)
These are the KDE/Wayland tools the server shells out to. Install with your distro's package manager.
Tool | Package (Arch) | Package (Debian/Ubuntu) | Used for |
|
|
| Window enumeration, geometry, focus |
|
|
| Screen capture |
|
|
| (Optional) alternative input backend reference |
|
|
| (Optional) future per-output capture |
On Arch this machine already had kdotool, spectacle, grim, ydotool,
slurp, and busctl available.
Kernel / group requirements (input)
Synthetic input is sent through a virtual device on /dev/uinput. You must:
Be a member of the
inputgroup:groups | grep -w input || sudo usermod -aG input "$USER" # then log out and back inHave write access to
/dev/uinput(groupinputowns it:crw-rw---- root input). No root daemon (ydotoold) is required becausepython-uinputopens the device directly as a group member.
Verify with:
ls -l /dev/uinput # should show group 'input' with rw
id -nG | tr ' ' '\n' | grep -x input # should print 'input'Python packages
python -m venv .venv
. .venv/bin/activate
pip install -r requirements.txt
# AT-SPI element/action/value targeting + semantic clicks work out of the box:
# kwin-mcp talks to AT-SPI directly over D-Bus via jeepney (already a
# dependency), so no pyatspi is required. On distros where the legacy pyatspi
# module happens to be installed, it is used as a fallback backend.Installed and verified on this build: mcp 1.28.1, python-uinput 1.0.1,
Pillow 12.3.0 (Python 3.14).
Running
. .venv/bin/activate
# dependency preflight (also run automatically by setup.sh)
python server.py --check
# JSON readiness report
python server.py --doctor
# stdio MCP server (for Claude/Codex/Hermes MCP clients)
python server.py
# or via the convenience wrapper
python run.py
# Streamable HTTP transport on 127.0.0.1:8080
python server.py --http 8080The smoothest path, however, is the one-command uvx setup described in the
next section, which needs no local venv at all.
Wiring into an MCP client (one command)
The recommended way is uvx, the Python equivalent of npx: it downloads and
runs the server on first use, then caches it. No clone, no venv, no manual
install. After uvx runs once, the agent just launches
uvx --from git+https://github.com/Samthesurf/kwin-mcp kwin-mcp.
Automatic (recommended): run the setup script, which checks dependencies and injects the correct config into your agent.
git clone https://github.com/Samthesurf/kwin-mcp.git /tmp/kwin-mcp && cd /tmp/kwin-mcp
./setup.sh hermes # or: claude | codex | cursor | zed | checksetup.sh runs a preflight first. If a system dependency is missing it prints
exactly what to install (e.g. sudo pacman -S kdotool) and stops, so you never
end up with a half-wired, broken server. If all checks pass it writes the
uvx --from ... kwin-mcp entry into the chosen agent's config.
Manual: point the client at the uvx launcher. Example
(mcp-config.example.json):
{
"mcpServers": {
"kwin-mcp": {
"command": "uvx",
"args": ["--from", "git+https://github.com/Samthesurf/kwin-mcp", "kwin-mcp"]
}
}
}Hermes:
./setup.sh hermeswrites it undermcp_serversin~/.hermes/config.yaml, or paste the JSON there. Restart Hermes to load it. This replacescua-driverfor thecomputer_usetoolset on a Wayland box.Claude Code:
claude mcp add kwin-mcp -- uvx --from git+https://github.com/Samthesurf/kwin-mcp kwin-mcpCodex / Cursor / Zed:
./setup.sh codex|cursor|zed, or paste the JSON into their MCP config file.
The server is self-sufficient about its environment: when an MCP client does
not forward DBUS_SESSION_BUS_ADDRESS / WAYLAND_DISPLAY / DISPLAY /
XDG_RUNTIME_DIR, the server discovers the correct session values from
/run/user/<uid>/ so kdotool and spectacle always work.
No API keys, no network calls, no cloud. Everything runs locally against your compositor.
Running from a local checkout (alternative)
If you prefer a local venv instead of uvx:
python -m venv .venv && . .venv/bin/activate
pip install -r requirements.txt
python server.py # stdio MCP server
python server.py --check # dependency preflightHow it works (and the Wayland caveats)
On Wayland there is no X server between apps and the compositor, so input cannot be injected "into a specific window" the way cua-driver does on X11. The bridge follows a focus-then-inject model:
kdotool windowactivate <uuid>raises and focuses the target window.The virtual pointer (a
python-uinputdevice) is moved to the target coordinate. Because the compositor applies mouse acceleration and uinput only emits relative motion, movement is closed-loop: read the real cursor, emit a bounded delta, re-read, repeat until within ~3 px. This makes absolute positioning deterministic.The click / key / drag is emitted on the now-focused window.
What this costs versus X11 (inherent to Wayland, not a bug):
No background targeting. The window must be focused first; the real cursor moves. It is not invisible the way background X11 input can be.
Single cursor. Parallel multi-pointer drags (cua's
parallel_mouse_drag) are not available on Wayland.Secure-input surfaces (some password fields, the lock screen) may reject synthetic input.
Small focus race. Between focusing and injecting there is a brief window where focus could shift; the code waits ~250 ms after activation.
Screenshots use spectacle in background/non-interactive mode. On KDE Wayland
--background can occasionally race the compositor and capture the lock-screen
splash instead of the live desktop; the capture path adds a settle delay and a
variance-based validation that retries up to 3 times, so the returned frame is
always the real desktop.
AT-SPI (get_window_state, click_element, perform_action, set_value,
semantic clicks) works for GTK/Qt/KDE apps that expose an accessibility tree.
It talks to AT-SPI directly over D-Bus (via jeepney, a pure-Python client),
so it needs no pyatspi and works on Arch; the legacy pyatspi module is used
only as a fallback if present. It degrades gracefully to coordinate input when
no AT-SPI backend is available.
Project layout
kwin-mcp/
├── server.py # MCP server (FastMCP) exposing all tools
├── run.py # convenience entry point
├── requirements.txt
├── pyproject.toml
├── mcp-config.example.json
├── README.md
└── kwin_bridge/
├── __init__.py
├── windows.py # kdotool wrapper: enumerate/geometry/focus/close
├── screenshot.py # spectacle wrapper + crop + retry/validate
├── input.py # /dev/uinput virtual pointer+keyboard, closed-loop move
├── a11y.py # AT-SPI front-end (semantic resolve / action / value)
├── atspi_dbus.py # pure-D-Bus AT-SPI backend (jeepney, no pyatspi)
├── doctor.py # structured JSON readiness report
└── preflight.py # actionable dependency checkTesting
A quick smoke test against the live desktop:
. .venv/bin/activate
python - <<'PY'
from kwin_bridge import windows, screenshot, input as inp
ws = windows.list_windows()
print("windows:", len(ws))
wid = ws[0].window_id
print("capturing", wid)
p = screenshot.capture_window(wid, "/tmp/test.png")
print("shot:", p)
inp.click_window(wid, 100, 100)
inp.type_text("hello from kwin-mcp")
PYLicense
MIT. Use it, fork it, ship it.
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.
Related MCP Servers
- AlicenseAqualityDmaintenanceAn MCP server for Hyprland desktop automation that allows AI assistants to see the screen, control mouse and keyboard, and manage windows using native Wayland tools. It integrates OCR for text-based interaction and supports complex multi-monitor setups with pixel-accurate coordinate mapping.275MIT
- FlicenseNot gradedqualityBmaintenanceAn MCP server that gives a model eyes and hands on a Linux Wayland desktop, enabling screenshot capture, mouse/keyboard control, OCR, and icon detection via OmniParser.1
- AlicenseNot gradedqualityDmaintenanceAn MCP server that enables AI agents to capture targeted screenshots of specific application windows on Windows and Linux, with smart window state restoration and focus management.MIT
- AlicenseAqualityAmaintenanceAn MCP server for Hyprland that enables AI agents to control workspaces, windows, mouse, keyboard, and take screenshots on a Wayland desktop.147MIT
Related MCP Connectors
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to control Unreal E…
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/Samthesurf/kwin-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server