open-browser-control
Controls the Firefox browser via a WebSocket bridge and browser extension, providing tools for page navigation, DOM inspection, JavaScript execution, and user interaction.
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., "@open-browser-controlSearch for MCP on Google and click the first result"
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.
Open Browser Control
Give AI agents control of your browser — Chrome or Firefox. Works with Kiro, Claude Code, Claude Desktop, Cursor, and any MCP client.
The AI uses your real browser — your cookies, sessions, and logins. When it hits something it can't handle (sign-in, CAPTCHA, MFA), it asks you to step in, then continues where it left off.
Install either the Chrome or the Firefox extension — the MCP server speaks the same protocol to both.
Quick Start
Step 1: Add MCP config
Add to your MCP client's config:
Kiro — add to .kiro/settings/mcp.json (workspace) or ~/.kiro/settings/mcp.json (global):
{
"mcpServers": {
"browser": {
"command": "npx",
"args": ["-y", "open-browser-control"]
}
}
}claude mcp add browser -- npx -y open-browser-controlAdd to your MCP config file:
{
"mcpServers": {
"browser": {
"command": "npx",
"args": ["-y", "open-browser-control"]
}
}
}Step 2: Install the browser extension
Pick whichever browser you'd like the AI to drive.
Chrome — install from the Chrome Web Store:
Open Browser Control on the Chrome Web Store
Unpack the extension and load it in Firefox:
npx -y open-browser-control --extension firefoxThis prints a path like ~/open-browser-control-extension-firefox. Then:
Open
about:debugging#/runtime/this-firefoxClick Load Temporary Add-on…
Pick the
manifest.jsoninside that folder
Firefox clears unsigned temporary add-ons on restart. For a permanent install, use Firefox Developer Edition (
xpinstall.signatures.required=false) or sign the extension via AMO.
The extension is auto-installed to ~/open-browser-control-extension/ on first run. Load it in Chrome:
Open
chrome://extensions/Enable Developer mode (toggle in top right)
Click Load unpacked
Select the folder:
~/open-browser-control-extension/
Done. The extension auto-connects when your agent starts. No servers to run, no buttons to click.
Related MCP server: agent-browser-mcp
How It Works
AI Agent MCP Server Browser Extension
(Kiro, ◄──► (npx open-browser- ◄──► (Chrome: CDP, or
Claude, ..) control) Firefox: scripting API)
stdio ws://localhost:9334 auto-connectYour agent starts the MCP server automatically (from the config above)
MCP server starts a WebSocket bridge on
localhost:9334The browser extension (Chrome or Firefox) auto-connects (polls every 2s until it finds the bridge)
Agent sends tool calls → extension executes (via Chrome DevTools Protocol on Chrome, or the WebExtensions
scriptingAPI on Firefox) → results flow back
Both extensions implement the same JSON protocol over WebSocket, so the MCP server, bridge, and agents never need to know which browser is on the other end.
User/AI Handoff
Mode | What happens |
Collaborative (default) | Both user and AI interact with the page |
AI Control | AI drives, user watches |
User Control | AI paused, user takes over |
AI browsing → hits login page → calls browser_request_user("Please sign in")
→ user signs in → clicks "Done" in side panel → AI continues, now authenticatedBrowser Tools
19 tools available to the AI:
Tool | What it does |
| Go to a URL |
| Get interactive elements with positions and text (primary way to read pages) |
| URL, title, dimensions, scroll position |
| Run JavaScript in page context |
| Click by selector, text, or coordinates |
| Type text, optionally clear first or press Enter |
| Scroll up/down/left/right |
| Press any key with modifiers |
| Hover over an element |
| Pick from a dropdown |
| Wait for element, text, or fixed time |
| Capture page as PNG (use sparingly — DOM tools are faster) |
| Ask user to take over (sign in, CAPTCHA, etc.) |
| Create a named tab group for a task |
| Open a new tab in the current group |
| Close a tab |
| Switch to a tab by ID |
| List all open tabs in this session |
| Set the session name (shown on tab group) |
Standalone Use (no MCP)
If you're not using an MCP client:
npx -y open-browser-control --bridge # starts WebSocket bridge onlyConnect your agent to ws://localhost:9334 and send JSON messages:
{"type": "action", "action": "navigate", "id": "1", "params": {"url": "https://example.com"}}
{"type": "action", "action": "click", "id": "2", "params": {"text": "Sign In"}}
{"type": "action", "action": "get_dom", "id": "3"}CLI
npx -y open-browser-control # Start MCP server (default)
npx -y open-browser-control --bridge # Standalone WebSocket bridge
npx -y open-browser-control --extension # Print extension install path
npx -y open-browser-control --port 9000 # Custom port
npx -y open-browser-control --help # HelpDevelopment
git clone https://github.com/smankoo/open-browser-control
cd open-browser-control
npm install
npm run build # builds both browsers → dist/chrome, dist/firefox
# and packages to extension/ and extension-firefox/
npm run dev # watch mode
npm start # run MCP server locallyRequirements
Chrome 116+ or Firefox 128+
Node.js 18+
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- 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/smankoo/open-browser-control'
If you have feedback or need assistance with the MCP directory API, please join our Discord server