quickshell-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., "@quickshell-mcpscreenshot window 0 and inspect its object tree"
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.
quickshell-mcp
An MCP server that runs a quickshell (QML) app and drives it.
The server starts the app inside a headless sway. It takes screenshots of
windows, dumps the object tree of a window, and reads or writes QML state. The
compositor supplies the display; a profile supplies the backends.
The server is app-agnostic. The profile tells it which config directory to run, which entry file to load, which backend processes to start, and which macros to offer. You give the server one profile, and the server drives that app.
Run it
nix run starts the server. It speaks MCP over stdio.
Run the counter example:
nix run ~/git/quickshell-mcp -- --profile ~/git/quickshell-mcp/examples/counter/profile.jsonPoint --profile at any app's profile JSON.
Related MCP server: wayland-mcp
Drive the app
You operate the app through tools. Each tool call returns a result. A refused
call returns an MCP error with the message <code>: <detail>.
The loop:
screenshot(window_index): see the app as a PNG.windows(): list the windows.tree(window_index, root_path, max_depth): map a window's visual tree. Each node reports apath(a child-index chain like0/2/1) and itsobjectName.find(name): get the child-index paths of nodes whoseobjectNameisname.Build a selector that names one node and one member.
get_property/set_property/invoke/qml_eval/macro: read or change state.screenshot(window_index)again: see the result.
Selectors
A selector names one node and one member. It takes one of three forms:
wN.prop: windowNitself, then memberprop. Example:w0.count. A window's own properties live here.wN/childpath.prop: windowN, then a child-index path under its content item, then memberprop. Example:w0/0/2.text.@objectName.prop: the first node with thatobjectName, then memberprop. Example:@saveBtn.enabled.
find returns bare paths like 0/2/1. Turn one into a selector as
wN/<path>.<prop>, or pass it to tree(root_path=...).
An @objectName selector resolves to the first match. An app that repeats a
control per item suffixes the item name into the objectName
(activateToggle-alpha), so each control has a unique name.
screenshot needs the window's content item to hold exactly one visual child
that covers the window.
Tools
Tool | Arguments | Effect |
| none | Returns |
| none | Lists the windows: index, type, title, visible, size. |
|
| Grabs a window as a PNG, compositing the content over the window's (opaque) background colour so it is never transparent. |
|
| Dumps a window's visual tree as JSON. Password fields stay hidden. |
|
| Reads a QML property as JSON. |
|
| Writes a QML property from a JSON value. |
|
| Calls a QML method with a JSON array of arguments. |
|
| Runs a JavaScript expression in the app scope. |
|
| Lists the child-index paths of nodes whose |
|
| Runs a profile macro, with |
| none | Boots the app. Idempotent while the app is alive. |
| none | Tears the app down, then boots a fresh one with re-seeded fixtures. |
| none | Tears the app, the backends, and the compositor down. A tool call while down returns an error. |
qml_eval reaches any state in the app. win(i) gives window i;
app gives the app root.
Error codes
A refused call returns an MCP error. The code is one of: unresolved,
no-member, not-callable, too-many-args, no-window, no-node,
not-visible, zero-size, grab-refused, multi-root, partial-window,
bad-payload, threw.
Profiles
A profile is a small JSON file you write for each app. --profile is
required.
Every field lives in
quickshell_mcp/profile.cue, with a doc-comment
on each. The loader checks your profile against that schema with cue vet
before boot, so a broken profile fails at start with the schema error.
The smallest profile runs a self-contained app:
{ "config_dir": "." }config_dir is the only required field. It is absolute, or relative to the
profile file. entry defaults to shell.qml.
Inside any string value, ${PROFILE_DIR}, ${CONFIG_DIR}, ${WORK}, and
${XDG_RUNTIME_DIR} expand at boot.
See examples/counter/profile.json for a macro, and
examples/async-form/profile.json for a backend with a readiness gate, a seeded
fixture, and env_out.
Generate a JSON Schema for your editor from the same source:
cue def --out jsonschema -e '#Profile' quickshell_mcp/profile.cueExamples
Each example is self-contained and doubles as a test. Each ships a check.py
that boots it for real and asserts the states its README documents.
python examples/check.py # every example
python examples/check.py counter # one of themcounter: a tiny, self-contained QML app.async-form: a frontend/backend form flow with a fake backend over a unix socket, a service list, per-profile forms with validation, keyed in-flight state, and a streaming setup flow with prompts. Seeexamples/async-form/README.mdfor the state tables and the selectors.
Contributing
Launch the dev-shell:
nix develop ~/git/quickshell-mcpMCP_BACKEND_DELAY_MS passes to every backend a profile spawns. A backend that
honours it slows async transitions enough to observe them between screenshots.
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
- AlicenseNot gradedqualityCmaintenanceProvides powerful inspection and interaction tools for connected android devices or emulators.11MIT
- FlicenseNot gradedqualityFmaintenanceProvides screenshot, analysis, mouse and keyboard control tools for modern Linux desktops via Wayland.17
- AlicenseNot gradedqualityCmaintenanceEnables AI agents to automate Linux desktop GUI by launching and interacting with Wayland applications in isolated virtual KWin sessions, or connecting to live desktops for collaborative automation.39MIT
- AlicenseAqualityCmaintenanceControls any built Tauri app's UI via WebDriver, enabling mouse/keyboard actions, DOM inspection, and screenshots.22MIT
Related MCP Connectors
Eyes and hands on real Windows PCs — observe, click, type via Glasswarp API.
Hosted real Google Chrome MCP with per-user persistent state. Navigate, click, type, screenshot.
Access Kernel's cloud-based browsers and app actions via MCP (remote HTTP + OAuth).
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/hsjobeki/quickshell-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server