Clara Windows UI MCP
Clara Windows UI MCP
Локальный MCP-сервер для автоматизации интерфейса Windows, ориентированный на сложные цели: игровые окна, устаревшие настольные приложения и поверхности, не предоставляющие надёжного доступа к UI Automation.
Зачем это нужено
Встроенный механизм computer-use convenient, но может не справляться с окнами, которые отрисовываются через игровые движки или нестандартные графические конвейеры. Этот MCP выбирает более низкоуровневый путь:
перечисляет и фокусирует окна через
HWNDуправляет вводом мыши и клавиатуры через нативные Win32 API
сохраняет снимки рабочего стolа или целевого окна в PNG-файлы
предоставляет то же поведение через MCP stdio и небольшой локальный HTTP API
Related MCP server: OmniFlow
Текущий набор инструментов
list_windowsget_foreground_windowfocus_windowcapture_screenmove_mouseclick_mousepress_keytype_text
Visionмодуль` на осно Vision
Модуль src/domain/vision определяет общий клиентский контракт vision:
SceneObservation— хранит сведения о процессе снимка, результаты OCR и обнаружения.SceneEvent— оставляет место для необязательных изменений во времени.VisionProfileRegistry— изолирует примеры, ссылки на обучающие масивы и правил поapplicationId.
Реализации захвата и обнаружения намеренно не входят в эти фуndaменты. Потребители должны опираться на контракт сцены/событий, а не на внутреннюю реализацию детектора.
Vision-сервис и трей
Нативные проекты использовают тот же безопасный контур сsession, что и Clara Cursor:
ClaraVisionBroker Windows service -> local named pipe -> ClaraVisionTray user-session agentБрокер сохраняет высокоуровневную состtoяние наблюдения (
pausedилиobserving) и ретранслируется its локально.Трей отображает это состояние и позволяет ползователю заносить или останавливать наблюдение.
Ни один из компонентов not захватывает рабочий стол и не выполняет автоматизациий. Будущий агент санса подстроится к существующему конвей сборку захвата с явным согласим только после определения целevой выбор и политики захвата.
Соберите native/ClaraVisionBroker and native/ClaraVisionTray в Release. Затем
вызывайте scripts/install-vision-service.cmd из вызывнной командной строки и
scripts/install-vision-tray.cmd из активированного сеанса.
Запуска
npm.cmd install
npm.cmd run build
npm.cmd run start:stdioДля локальных диагностик:
npm.cmd run start:apiАрхитектурные варианты
режим запуска:
stdio,apiилиbothпрофиль развёртывания: только local
аутентификация: отсутствует
хранилitмо: только локальные файлы, только для снимок
organizация: команды и запросы в стиле CQRS с транспортными адаптерами
Примечания
Скриншоты записываются в
captures/.Первая версия сознательно избегает UIA, чтобы остаться полезной для игр и приложений, отрисовываемых через canvas.
следующий логичный шаг — целвое сопоставление по шаблонном изобронению, пиксельного области или OCR.
Available Tools
8 toolscapture_screenB
Capture the desktop or a specific window to a PNG file.
| Name | Required | Description | Default |
|---|---|---|---|
| selector | No | ||
| outputPath | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden of behavioral disclosure. It only says 'Capture the desktop or a specific window to a PNG file' but does not reveal that it writes a file (a side effect), how the selector behaves when omitted, whether it blocks, or any permission requirements. This is insufficient for a tool that performs a write operation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence with zero fluff. It states the action, scope, and output directly. While it is terse, the conciseness is appropriate given the tool's apparent simplicity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no annotations, no output schema, and 0% schema coverage, the description is severely incomplete. It does not explain the effect of omitting parameters, the return value (or lack thereof), file overwrite behavior, or any error conditions. An agent would have to guess about the required output path and selector semantics.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 0%, so the description must compensate for parameter meaning. The phrase 'the desktop or a specific window' hints that the 'selector' parameter is used to pick a window, but it does not explain how 'handle' or 'titleIncludes' work, nor does it mention 'outputPath' or its default. The description adds only vague conceptual meaning, not operational detail.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Capture') and the resource ('the desktop or a specific window') with an explicit output type ('to a PNG file'). It is specific enough to distinguish from sibling tools like list_windows, focus_window, and input tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives. There is no mention of when to choose this over list_windows or get_foreground_window, nor any prerequisites or exclusions. The description is purely declarative.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
click_mouseC
Click at a screen coordinate using the selected mouse button.
| Name | Required | Description | Default |
|---|---|---|---|
| x | Yes | ||
| y | Yes | ||
| button | Yes | left | |
| doubleClick | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It only says 'Click' without explaining that a click involves pressing and releasing a button, potential side effects like focus changes, or that doubleClick toggles a double-click. This is a significant gap.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single concise sentence, but it is under-specified. It omits essential details that an agent needs to call the tool correctly. While brevity is good, this description is so short that it fails to earn its place by conveying necessary information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with 4 parameters and no output schema, the description is severely incomplete. An agent needs to know that coordinates are screen-relative, that doubleClick toggles a double-click, and the meaning of each button option. With no annotations to supplement, this is inadequate.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must explain parameter meanings. It does not describe x and y coordinates (e.g., screen-relative, units), the button enum options, or the doubleClick boolean. The only hint is 'selected mouse button', which vaguely refers to the button parameter but adds no real value.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb ('Click') and resource ('screen coordinate'), and clarifies it uses a mouse button. This clearly distinguishes it from siblings like move_mouse (no click) and press_key (keyboard action). The purpose is unambiguous even without explicit differentiation.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use this tool versus alternatives. It doesn't mention typical use cases (e.g., clicking UI elements) or that move_mouse should be used for positioning without clicking. There are no exclusions or conditions provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
focus_windowB
Bring a target window to the foreground by HWND or partial title match.
| Name | Required | Description | Default |
|---|---|---|---|
| handle | No | ||
| titleIncludes | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must carry the full burden, but it only states the action without covering side effects (e.g., what if the window is minimized), error behavior, or whether it activates vs merely raises. Minimal behavioral disclosure beyond the verb itself.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single, dense sentence that front-loads the core action and identification methods with no wasted words. Highly concise and appropriately structured.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple two-parameter tool, the description omits crucial contextual details: behavior when neither parameter is provided, behavior when both are provided, and what happens if no window matches. No output schema or annotations to fill gaps, leaving the agent uncertain about edge cases.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate. It adds meaning by mapping 'handle' to HWND and 'titleIncludes' to partial title match, but provides no details on format, case sensitivity, or precedence when both are given. Partial compensation but not thorough.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'bring to foreground' and the resource 'target window', and specifies two identification methods (HWND or partial title match). This distinguishes it from siblings like list_windows (listing) and get_foreground_window (querying).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use this tool versus alternatives like list_windows or get_foreground_window. It does not explain when to prefer a handle vs titleIncludes, or any preconditions. The intended usage is implied but not explicitly stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_foreground_windowB
Get the current foreground window.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It only states 'get' without specifying the return format (e.g., window ID, title), side effects (none implied but not explicit), or platform-specific behavior. For a tool with zero annotations and no output schema, this is a significant gap.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence with zero fluff. For a tool with no parameters, this is appropriately sized. It immediately conveys the core purpose without unnecessary complexity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the lack of annotations, output schema, and parameters, the description must provide enough context for an agent to call and interpret the result. It fails to explain what the 'foreground window' represents, what data is returned (e.g., handle, title, bounds), or how to use the output. The description is adequate only for knowing the tool's existence, not for reliable invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, so the baseline is 4 per the rubric. The description correctly omits parameter details since there are none, and the schema already covers 100% of the (empty) parameter set. No additional semantic information is needed.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('get') and the specific resource ('current foreground window'). This distinguishes it from sibling tools like list_windows (which likely enumerates all windows) and focus_window (which sets focus). An agent can immediately understand the tool's role.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
There is no guidance on when to use this tool versus alternatives. The description does not mention that this is for the active window as opposed to listing all windows, nor does it indicate any prerequisites or complementary usage with focus_window or capture_screen. An agent is left to infer usage context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_windowsA
List visible top-level windows with HWND, title, process info, bounds, and foreground state.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations exist, so the description carries the full burden. It does add meaningful scoping — 'visible top-level' tells the agent that hidden/minimized windows and child windows are excluded, and 'foreground state' discloses that focus status is reported. However, it leaves common behavioral questions open for a list operation: ordering, result-size limits, and whether handles are live/current. Decent but not comprehensive disclosure.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single front-loaded sentence with zero waste: action verb first, resource scope next, then the full output field list. Every element earns its place and no wording is redundant.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With no output schema and no annotations, the description is the only channel conveying the return shape, and it does so thoroughly by enumerating all returned data fields. The operation is simple and zero-arg, so nothing essential is missing; only minor details (ordering, blocking behavior) go unmentioned.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool takes zero parameters, so the schema has nothing to explain and there is nothing the description needs to add. Per the rubric baseline for 0-param tools, a 4 is appropriate — the description correctly focuses on behavior rather than parameters.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
States a specific verb ('List') and a precisely scoped resource ('visible top-level windows'), then enumerates the exact output fields (HWND, title, process info, bounds, foreground state). This clearly differentiates it from siblings like get_foreground_window (single focused window) and focus_window (changes focus), so an agent can tell operations apart without opening schemas.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Usage is implied rather than stated. An agent would infer this tool answers 'what windows are open?' queries, and the foreground-state field hints it complements get_foreground_window, but the description never explicitly says when to prefer it over a sibling (e.g., when you need a specific window's handle vs. enumerating all). No exclusions or alternatives are named.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
move_mouseC
Move the mouse cursor to an absolute screen coordinate.
| Name | Required | Description | Default |
|---|---|---|---|
| x | Yes | ||
| y | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must carry the full behavioral burden. It states only the primary action but does not disclose any side effects, such as whether the cursor movement triggers hover events, whether the coordinates are relative to a primary monitor or virtual desktop, or any error handling for out-of-bounds input. The description adds little beyond the tool name.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, clear sentence with no unnecessary wording. It is front-loaded with the action and resource. For a simple tool, this is appropriately concise and well-structured.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is a basic input action with two parameters, so a short description might be acceptable. However, missing context about coordinate interpretation (e.g., multi-monitor setups) and lack of any behavioral notes (e.g., does it move instantly or animate?) means an agent might not know edge cases. It is adequate but not fully complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema provides minimal parameter definitions (integer types with huge ranges) and no descriptions. The description mentions 'absolute screen coordinate' but does not clarify the coordinate system, units, or boundary behavior. Since schema coverage is 0%, the description fails to compensate, leaving the agent without meaningful param semantic details.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states the specific action ('Move the mouse cursor') and the resource ('absolute screen coordinate'), which clearly distinguishes this from sibling tools like click_mouse or type_text. It is not a tautology because it adds the 'absolute' qualifier, making the tool's scope clear even without reading the schema.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives. For instance, it does not mention that this avoids clicking or scrolling, or that it can be used for positioning before a click. The description leaves the usage context entirely implicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
press_keyB
Send a key sequence through SendKeys syntax, for example {ENTER} or ^a.
| Name | Required | Description | Default |
|---|---|---|---|
| key | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description bears full responsibility for behavioral disclosure. It only states the action (sending a key sequence) without mentioning that keys are dispatched to the active window, that timing or delays might apply, or any side effects. This is a significant gap for a tool that operates on UI state.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence that immediately conveys the core action and includes examples. No wasted words; it is as concise as possible while remaining informative.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool that interacts with the active window and has no annotations, the description is insufficient. It omits critical context such as window focus requirements, behavior when multiple keys are passed, error conditions, and what (if anything) is returned. Given the tool's simplicity, a more thorough description should exist.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema provides no description for the 'key' parameter, and schema description coverage is 0%. The description gives two examples but does not explain the full SendKeys syntax, such as how to combine modifiers, escape characters, or represent special sequences beyond the two examples. It adds some value but is incomplete for a robust understanding.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states a specific verb ('Send') and resource ('key sequence through SendKeys syntax'), with concrete examples like {ENTER} or ^a. It effectively distinguishes the tool from the sibling type_text, which handles plain text input, making the purpose unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for special keys and shortcuts via the SendKeys syntax and examples, but it does not explicitly mention when to use this versus alternatives like type_text, nor does it state prerequisites (e.g., having a focused window). The guidance is implicit rather than explicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
type_textB
Type text through SendKeys with special characters escaped.
| Name | Required | Description | Default |
|---|---|---|---|
| text | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It does mention that special characters are escaped, which is a useful behavioral detail, but it fails to disclose that the action sends keystrokes to the foreground window, may require a focused window, or that it mutates system state. This is a significant gap for a UI automation tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single concise sentence with no fluff. It is front-loaded with the primary action ('Type text') and the method, followed by a key behavior. Every word earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity, the description is still incomplete. It does not mention the prerequisite of a focused window, potential errors (e.g., no window focused), or any output/return behavior. The agent is left without critical context to invoke it reliably, especially since there is no output schema or annotations to fill the gap.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate. The phrase 'special characters escaped' adds meaning to the 'text' parameter, indicating that special characters are handled automatically. However, it does not explain format, length limits, or provide examples. It adds some value but not enough to fully clarify the parameter.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb ('Type') and resource ('text') with the method ('through SendKeys') and a key behavior ('special characters escaped'). It clearly distinguishes from siblings like press_key (single key) and move_mouse/click_mouse, which the agent can infer as alternatives without ambiguity.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No explicit guidance on when to use this tool versus alternatives. The description does not mention that it types into the focused window or requires a prior focus_window call, nor does it contrast with press_key for single keys. Usage context is implied by the tool name and siblings but not stated, leaving the agent to infer.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
8 tool updates
v0.1.0- First observed
capture_screen - First observed
click_mouse - First observed
focus_window - First observed
get_foreground_window - First observed
list_windows - First observed
move_mouse - First observed
press_key - First observed
type_text
TDQS
Each tool targets a distinct action: listing windows, getting foreground, focusing, capturing, mouse movement/click, and keyboard input. No overlap in purpose, unambiguous.
All tool names follow a consistent verb_noun pattern (list_windows, get_foreground_window, capture_screen, etc.) with snake_case, perfectly predictable.
8 tools is well-scoped for a Windows UI automation server, covering window management, screen capture, and input simulation without bloat or thinning.
The set covers core UI automation workflows (window handling, mouse/keyboard input, screenshot). Minor gaps like reading window properties or mouse scroll are not critical but could be added.
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 Connectors
Eyes and hands on real Windows PCs — observe, click, type via Glasswarp API.
Automate cloud Chrome—navigate, click, type, screenshot, run code, record screen video
- mcp-serverOAuthcom.make
Give your AI agents the tools to build, manage, and run automation workflows.
AI-powered browser automation — navigate, click, fill forms, and extract data from any website.
Related MCP Servers
- AlicenseNot gradedqualityBmaintenanceEnables comprehensive Windows desktop automation including screen capture, OCR text extraction, mouse/keyboard control, window management, process control, and clipboard operations through 25+ tools for AI agents.4MIT
- AlicenseNot gradedqualityDmaintenanceEnables AI clients to automate Windows desktop applications through window manipulation, image recognition, OCR, keyboard/mouse simulation, and memory operations via the MCP protocol.MIT
- FlicenseNot gradedqualityDmaintenanceEnables automation of native Windows desktop applications through screen capture, mouse/keyboard control, and waiting for UI changes, exposing them as MCP tools.1-
- FlicenseNot gradedqualityCmaintenanceEnables AI agents to control Windows GUI applications like a human using screen capture, OCR, mouse and keyboard input, and window management, with safety levels and memory.-
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/BestCodeTools/clara-windows-ui-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server