Uindow
OfficialUindow - AI browser immune to prompt injections
Uindow drives a real, signed Chromium/Electron browser with genuine OS-level input - actual cursor movement, real keystrokes, and native file dialogs rather than synthetic page events. It runs entirely on your own machine and your own network, and every line of code it executes sits in plain sight in this repository.
Automate it three ways:
No code - build automations in the integrated editor and record complex workflows without writing code.
From any AI assistants - Uindow ships a local MCP server, so Claude, Cursor, VS Code, or any MCP-compatible client can list, create, and run automation modules directly. See Control Uindow from AI assistants.
Write automations in pure JavaScript - Use the integrated development environment to write, test, and debug automations with ease. Auto-completion, code healing, JavaScript parsing, and linting are all built in.
Related MCP server: WinWright
Running Uindow
In order to use the app, create an account for free at uindow.com and follow the on-screen instructions.
Option 1 - Prebuilt binaries (recommended)
We build signed binaries for macOS, Windows, and Linux directly from the dist
source, and host them on the GitHub Releases
page (current and older versions) and on the Uindow install page.
Option 2 - npx
One command to fetch the CLI and launch the app:
npx -y @uindow/cli@latest app:startOther lifecycle commands:
npx @uindow/cli app:status # check whether the app is running
npx @uindow/cli app:stop # stop the appOption 3 - Run from source
Clone the repository and launch the app directly from source.
git clone https://github.com/uindow/uindow.git uindow
cd ./uindow/
npm install
npm startControl Uindow from AI assistents (MCP)
Uindow exposes a local Model Context Protocol server, so any MCP-compatible client can drive web-automation agents directly. The server communicates over stdio securely and is launched on demand by the AI assistant.
Requirements: Node.js 18+ with npx on your PATH.
npx -y @uindow/cli@latest mcpQuick reference
Uindow provides a 1-click connector for the most popular AI assistants.
Go to Uindow > AI assistants > Connect
AI assistant | Instant connect | Root key | Config location |
Claude Code (CLI + Desktop Code) | ✅ yes |
|
|
Claude Desktop (Chat / Cowork) | ✅ yes |
|
|
Cursor | ✅ yes |
|
|
VS Code (Copilot) | ✅ yes |
|
|
Windsurf | ✅ yes |
|
|
Zed | ✅ yes |
|
|
Codex | ✅ yes | TOML |
|
Gemini CLI | ✅ yes |
|
|
Cline | ✅ yes |
|
|
Goose | ✅ yes | YAML |
|
JetBrains AI Assistant
Go to Settings > Tools > AI Assistant > Model Context Protocol (MCP) and click Add, then paste the JSON. In the same dialog, set the scope to Global rather than project-scoped so the server is available in every project you open, then click Apply to start it.
{
"mcpServers": {
"uindow": {
"command": "npx",
"args": ["-y", "@uindow/cli@latest", "mcp"]
}
}
}Any other AI Assistant
Most remaining AI assistants accept the same object under mcpServers. Look for the config file
in your home directory (~/.<client>/...) rather than the one in your project root - the
home-directory copy is the global one:
{
"mcpServers": {
"uindow": {
"command": "npx",
"args": ["-y", "@uindow/cli@latest", "mcp"]
}
}
}Point the AI assistant at the command npx with arguments -y @uindow/cli@latest mcp.
If your AI assistant requires an explicit transport field, use "type": "stdio".
Verifying the connection
Run the launch command by hand first - it's the fastest way to separate "Uindow is broken" from "the AI assistant can't start it":
npx -y @uindow/cli@latest mcpA stdio server prints nothing and blocks. A silent, hung terminal means it started correctly; press Ctrl-C and go back to your AI assistant. Any stack trace you see here is the real error your AI assistant was swallowing.
Then confirm the scope took: open the AI assistant from a different directory than the one you configured it in, and check that Uindow's tools are still listed. If they vanish, the entry landed in a project-local config.
Troubleshooting
Server works in one project but not another.
Classic scope problem - the entry is project-local. In Claude Code,
claude mcp listfrom the other directory will come up empty; re-add with--scope user. In Gemini CLI, re-add with-s user. In Cursor and VS Code, move the entry from.cursor/mcp.jsonor.vscode/mcp.jsonto~/.cursor/mcp.jsonor the user-profilemcp.json.
spawn npx ENOENT/ server never starts in a GUI app.Desktop apps don't inherit your shell's
PATH, which bites anyone using nvm, asdf, or Volta. Runwhich npx(where npxon Windows) and put the absolute path incommand.
Config saved, nothing happened.
Most desktop AI assistants only reload MCP config on a full restart - quit the app entirely (macOS: Cmd+Q; Windows: quit from the tray icon) rather than closing the window.
Tools missing after adding the server.
Check the root key against the table above:
serversfor VS Code,context_serversfor Zed,mcp_serversin TOML for Codex,mcpServerseverywhere else. A wrong key is ignored silently in most AI assistants.
Duplicate or shadowed entries.
Several AI assistants resolve project config ahead of global config, so an old project-local
uindowentry will silently win over the new global one. Delete the stale entry rather than editing both.
Server connects but tools aren't used.
In Claude Code, MCP tools are deferred behind tool search by default and loaded on demand, so they may not appear in an upfront tool list. Ask for a Uindow tool by name, or set
"alwaysLoad": trueon the server entry to load its tools at session start.
Where to look next.
claude mcp listand/mcp(Claude Code), Output panel > MCP Logs (Cursor), Output > MCP (VS Code),~/Library/Logs/Claude/mcp*.logor%APPDATA%\Claude\logs\mcp*.log(Claude Desktop).
Command-line interface
You can run Uindow from any CI/CD pipeline or command-line interface.
npx -y @uindow/cli@latest --helpAlternatively, you can use node dist/bin.js --help instead of npx @uindow/cli --help
for a faster response.
USAGE
$ npx @uindow/cli <command> [options]
AVAILABLE COMMANDS
$ npx @uindow/cli mcp Run MCP server
$ npx @uindow/cli app:docs Fetch SDK documentation
$ npx @uindow/cli app:start Start application
$ npx @uindow/cli app:stop Stop application
$ npx @uindow/cli app:status Check application status
$ npx @uindow/cli list List agents
$ npx @uindow/cli create Create agent
$ npx @uindow/cli update Update agent
$ npx @uindow/cli delete Delete agent
$ npx @uindow/cli start Start agent
$ npx @uindow/cli stop Stop agent
$ npx @uindow/cli status Check agent status
$ npx @uindow/cli execute Execute code in agent
$ npx @uindow/cli logs Fetch agent logs
OPTIONS
--help Help menu for a specific command
--version Package versionAll commands that specify the @return tag in their description return valid
JSON-formatted values.
Creating modules
There are three ways to build a module - reach for them in this order:
Record it - zero learning curve. Open the integrated recorder and use the browser exactly as you normally would: point, click, scroll, upload and download files. The recorder turns your actions into JavaScript for you - deterministically, without any AI, and instantly. What you see is what you get.
Let an AI assistant write it via MCP. Want something more involved? Hand control to your local AI assistant over MCP and have it author the module on your behalf. Describe the outcome and let it produce the code for you. You're always in control of your automations, and you can use the included IDE to debug your code.
Write it yourself in plain JavaScript. If the recorder and the AI-driven approach both come up short, go straight to the source:
Visit the Uindow SDK Reference
Download the sample module and import it into Uindow
Experiment with the dollar-sign methods - the integrated editor has auto-complete, code hints, formatting and linting
For most people the learning curve is zero - the recorder is all you'll ever touch. And if you decide to go pro, it stays shallow: the SDK is there when you want it, not before.
Maintenance
Related MCP Servers
- Alicense-qualityAmaintenanceThe ultimate Windows MCP server for remote desktop control and automation. Control any Windows machine through the Model Context Protocol — perfect for AI agents, Claude Desktop, and OpenClaw integration. Transform your Windows desktop into a powerful, remotely-accessible automation endpoint. Run on the Windows machine you want to control. Built with FastMCP and the Model Context Protocol.Last updated165MIT
- Flicense-qualityBmaintenancecivyk-winwright is a Playwright-style MCP server for Windows desktop and browser automation. It provides 59 tools for controlling WPF, WinForms, Win32 apps, and Chrome/Edge via the Model Context Protocol. A unified automation layer connecting Claude and MCP-compatible agents to native Windows UI and web interfaces.Last updated17
- Flicense-qualityCmaintenanceWindows GUI automation MCP server for Claude Code, enabling deterministic desktop app control via 32 tools including window management, input, pixel search, and file verification, leveraging the AutoIt backend.Last updated
- AlicenseAqualityCmaintenanceAgent-native browser control MCP server that enables AI agents to browse and interact with web pages via accessibility tree snapshots and ref ID-based commands.Last updated152MIT
Related MCP Connectors
User-owned memory for AI agents, Copilot, Claude, IDEs, CLIs, and chat apps over remote MCP.
A paid remote MCP for AI agent browser DevTools MCP, built to return verdicts, receipts, usage logs,
Uptime, SSL, DNS and domain monitoring you can talk to from Claude or any MCP client.
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/uindow/uindow'
If you have feedback or need assistance with the MCP directory API, please join our Discord server