Hands your live Chrome tab to any MCP client β snapshot, navigate, click, type, extract.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Tell Chrome what you want done, in plain English, and let the agent do it.
Most browser agents bring their own browser. WebOperator works the one you are already in: the tab in front of you, with your sessions and logins intact β no separate profile, no re-login, no copying cookies around. The model behind it can be local, served by Ollama or MLX, so the pages you look at never have to leave the machine. And it works in both directions: the local bridge exposes that same live tab over MCP, so Hermes, OpenClaw, or any other agent client can borrow your browser as a tool.

Your goal, typed once Β· The agent plans, acts, verifies Β· Every step visible
Two ways in. If you would rather not touch Node, grab the
weboperator-1.5.0-chrome.zip archive from the
latest release and unzip it β
that folder is the built extension.
If you ran the commands above instead, the build lands in core/dist and finishes in
well under a second:
Either way, open chrome://extensions, enable Developer mode, click Load unpacked, and point it at the folder you just got. Press Cmd+Shift+K (Ctrl+Shift+K on Linux) to open the side panel, pick a provider under Settings, and type a goal.
Out of the box the agent talks to Ollama at http://127.0.0.1:11434, so have a tool-capable local model running before your first task β or paste an API key and use a remote provider instead.
WebOperator works the tab you are looking at in a plan β act β verify loop: it writes out a plan you can read, calls one browser tool at a time, and checks each result against a fresh snapshot of the page before moving on.
It can navigate, click, type, press keys, scroll, switch tabs, screenshot, and pull out structured text β so the same loop still works when the answer is scattered across half a dozen open tabs.
The side panel streams the plan, every action, and the final answer, and keeps the full trace; history, checkpoints, and scheduled runs each get their own tab. The flip side: the agent only knows what it can actually see in the browser, so anything hidden, paywalled, or geo-blocked simply will not show up in the answer.
Some tasks you want done whether or not you are at the keyboard. Give a schedule a start URL, a goal, and a cadence β once, hourly, daily, or weekly β and Chrome alarms wake the agent on time, even with the side panel closed.
Every run lands in History with its trace, so you can go back afterwards and see exactly what it did. If a run hits something only you can clear β a login wall, a verification challenge β it stops and marks itself needs_user rather than failing quietly.
Your live browser can be somebody else's tool. The local bridge speaks MCP over stdio and exposes ten of them: browser_snapshot, browser_navigate, browser_click, browser_type, browser_press, browser_scroll, browser_screenshot, browser_extract, browser_solve_captcha, and weboperator_execute_goal.
install.sh registers the Native Messaging host that wires those calls to your active Chrome or Brave tab. Drop-in configs for Hermes and OpenClaw are already in weboperator-bridge/.
A goal arrives from the side panel or from an external MCP agent. From there the service worker runs the show β model calls, task state, retries, verification, schedules, storage. The content script does the hands-on part: it turns the page into an accessibility snapshot with stable element refs, then performs DOM actions against those refs. Whatever the page says is treated as data, never as instructions to follow. Twelve built-in skills sit on top as domain playbooks and kick in when the agent recognizes a matching site or task.
To read and act on the page you point it at, the extension asks for <all_urls> plus activeTab/tabs/scripting, and for debugger to reach the DevTools Protocol actions the plain DOM API cannot do. The rest are housekeeping: sidePanel for the UI, storage for settings and history, alarms for scheduled runs, downloads for the file-downloader skill, and nativeMessaging for the MCP bridge. bookmarks and tabGroups are optional and only requested when something actually needs them.
The debugger permission is why Chrome shows a yellow "WebOperator started debugging this browser" bar while an action runs. That bar belongs to Chrome, not to the extension, and it goes away as soon as the agent detaches.
| Option | Default | What it does |
|---|---|---|
| Provider | ollama | Selects Ollama, Anthropic, DeepSeek, Gemini, MLX, OpenAI, an OpenAI-compatible endpoint of your own, OpenRouter, SiliconFlow, or xAI |
| Base URL (OpenAI-compatible) | http://127.0.0.1:8080/v1 | Points the OpenAI-compatible provider at llama.cpp, LM Studio, vLLM, LiteLLM, or any gateway |
| Ollama URL | http://127.0.0.1:11434 | Sets the local Ollama endpoint |
| Screenshot policy | auto | Controls automatic, always-on, or disabled vision |
| Action timeout | 10000 ms | Limits a single browser action attempt |
| Domain allowlist / blocklist | empty | Restricts or rejects tasks by domain when populated |
The bridge listens on 127.0.0.1:8765 and will accept unauthenticated calls until you set
WEBOPERATOR_API_TOKEN. Set it. Every bridge variable β bind host, port, socket and log
paths β is documented in docs/api.md.
shellcheck, only if you run the full local check gateOllama 403 β Ollama is refusing the extension's origin. Restart it with
OLLAMA_ORIGINS="chrome-extension://phbohkmfojcjbmgfnaikenmgemgckdpg,http://localhost:*" ollama serve. The origin has to be
spelled out: Ollama accepts chrome-extension://* into the list and then still answers 403. The id
above is fixed by the manifest key, and the side panel's own error message repeats it.core/dist or at the unzipped release folder, not at the repository root.401 β you set WEBOPERATOR_API_TOKEN on the bridge but the client is not sending it. Add Authorization: Bearer $WEBOPERATOR_API_TOKEN to the request.No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/weboperator)<a href="https://allmcps.com/mcp/weboperator"><img src="https://allmcps.com/api/badge/weboperator?style=directory" alt="Weboperator on AllMCPs" /></a>