io.github.uindow/uindow is an MCP server that real signed-browser automation for AI agents, over a local stdio MCP server. Its tool list has not been published yet over stdio and http, requires no API key, and scores 58/100 on MCPpedia's security, maintenance and efficiency rubric.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"uindow": {
"args": [
"-y",
"@uindow/cli",
"mcp"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
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.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y '@uindow/cli' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked @uindow/cli against OSV.dev.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in browser / ai-ml
MCP client bridge: connects to MCP servers and registers their tools on ctx.tools
An autonomous agent that conducts deep research on any data using any LLM providers
The official MCP server implementation for the Perplexity API Platform
Chrome DevTools for coding agents
MCP Security Weekly
Get CVE alerts and security updates for io.github.uindow/uindow and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
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:
In order to use the app, create an account for free at uindow.com and follow the on-screen instructions.
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.
npxOne command to fetch the CLI and launch the app:
npx -y @uindow/cli@latest app:start
Other lifecycle commands:
npx @uindow/cli app:status # check whether the app is running
npx @uindow/cli app:stop # stop the app
Clone the repository and launch the app directly from source.
git clone https://github.com/uindow/uindow.git uindow
cd ./uindow/
npm install
npm start
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 mcp
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 | mcpServers | ~/.claude.json |
| Claude Desktop (Chat / Cowork) | ✅ yes | mcpServers | claude_desktop_config.json |
| Cursor | ✅ yes | mcpServers | ~/.cursor/mcp.json |
| VS Code (Copilot) | ✅ yes | servers | mcp.json (MCP: Open User Configuration) |
| Windsurf | ✅ yes | mcpServers | ~/.codeium/windsurf/mcp_config.json |
| Zed | ✅ yes | context_servers | settings.json |
| Codex | ✅ yes | TOML [mcp_servers.*] | ~/.codex/config.toml |
| Gemini CLI | ✅ yes | mcpServers | ~/.gemini/settings.json |
| Cline | ✅ yes | mcpServers | cline_mcp_settings.json |
| Goose | ✅ yes | YAML extensions | ~/.config/goose/config.yaml |
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",
... [View full README on GitHub](https://github.com/uindow/uindow#readme)