Lend your own Chrome to a Kilogent workspace, so agents can use the sites you are already signed in to. They never see a password, and they never see a tab you opened.
The only thing you install is a Chrome extension. It dials out, so there is nothing to open on
your machine β no inbound port, no tunnel, no --remote-debugging flag.
Upstream is navidshad/remote-browser-mcp β the open project: the extension core, the relay, and the MCP server. This repository is the Kilogent-branded build of it.
See BRIDGE-SETUP.md to put the agent on a different machine. PRD.md is kept as a historical record of the original design and no longer describes this code.
Everything Kilogent-specific lives in one directory, packages/extension/src/providers/kilogent/:
| File | What it does |
|---|---|
index.js |
the transport itself β what upstream's registry calls |
popup.js |
the panel β sign-in, workspaces, blocklist |
auth.js |
signing in, and keeping the session alive |
connection.js |
the socket to Kilogent's relay |
api.js |
the browser's own row, written under rules |
blocklist.js |
the second of the two blocklist levels |
config.js |
the one URL compiled in, and the storage keys |
The rule that keeps this fork alive: never edit the core. executor.js, page-scripts.js
and connection.js come from upstream untouched β as do sw.js, providers/registry.js and
providers/bridge/ β so git merge upstream/main stays clean. A fix
that belongs to everybody goes upstream as a pull request and comes back down; only branding and
the Kilogent transport are ours.
git remote add upstream https://github.com/navidshad/remote-browser-mcp.git
git fetch upstream && git merge upstream/mainNeither sw.js nor popup.js conflicts any more. Both used to, on every merge, because the
transport and the sign-in UI were written into them β 390 lines where upstream had 69, and 391
where upstream had 177. Upstream grew a seam on both sides, ours moved into the directory above,
and the worker and the popup shell are now byte-identical on both sides.
Our whole divergence in code is that one directory, plus one import and one entry in each of
providers/index.js and providers/panels.js.
popup.html is the small remainder. Its body is upstream's structure β same ids, same mount
point β so a structural change merges; what is ours is the heading and the stylesheet, which is
what a brand IS. And manifest.json, for the same reason.
π MAINTAINING.md is the guide for both jobs: the full update loop (including which files conflict and how to resolve them), and the complete inventory of what a rebrand touches β written from the real Lumi β Kilogent rename, so the three traps in it are ones that actually happened rather than ones that might.
The self-hosted path is untouched and needs no Kilogent account: point the extension at a bridge
you run yourself, with a URL and a shared token. See packages/bridge-server below, and the
Advanced section of the popup.
- π Browse as yourself β the agent works inside your genuine Chrome profile: existing logins, cookies, sessions, extensions, and your home IP. No credential sharing, no re-authentication, no datacenter/bot fingerprint.
- π‘ Outbound-only, token-authenticated β the extension dials out over
wss://and authenticates with a shared token. Zero inbound ports, zero local tunnels, zero debug flags on your machine. - π Standard MCP, Playwright-compatible tools β one Streamable-HTTP MCP endpoint with tool names mirroring the official Playwright MCP (
browser_navigate,browser_snapshot,browser_click, β¦). Works out of the box with Claude Code or any MCP client; agents written against Playwright MCP port over almost unchanged. - π Live activity overlay β a colored ring + status badge appears on the page whenever the agent acts, so you always know what it's doing. It self-clears the moment the agent goes idle.
- β Take over anytime β it's your real browser window; just grab the mouse. An optional per-profile input-lock prevents you from accidentally fighting the agent mid-task, and always self-releases.
- π€ Multi-agent, multi-profile β run several Chrome profiles, each dialed into its own bridge. Every MCP session gets its own Chrome tab group, so parallel agents keep their work visually separate and never touch each other's tabs.
- π§± Profile-level isolation β a Chrome extension can only act within its own profile. Install it in one dedicated profile and the agent physically cannot reach your personal browsing.
- π§ͺ Snapshot-driven control β the agent reads pages as accessibility trees with stable
[ref=eNN]element ids, then clicks/types by ref. Faster and more reliable than pixel-hunting screenshots (screenshots are there too when needed). - π©Ί Self-healing & observable β WebSocket heartbeat +
chrome.alarmskeepalive survive MV3 service-worker eviction, reconnect with backoff, and re-attach the debugger lazily./health,bridge_ping, andcheck_local_statustell the agent whether a human/browser is actually there. Idle sessions are reaped automatically. - πͺΆ Tiny footprint β no Playwright install, no Node process, no daemon on your machine. One unpacked MV3 extension; everything else lives on the VM.
There are two halves that meet over an authenticated WebSocket:
- On the VM β
packages/bridge-serverexposes browser control to the agent as MCP and relays each command to the browser. It has two faces:- an MCP face on
localhost:3000/mcpβ the VM's Claude Code (orpackages/agent) connects here and callsbrowser_*tools. RequiresAuthorization: Bearer $BRIDGE_MCP_TOKEN; - a WebSocket face on
localhost:3002β the extension dials in and authenticates with a shared token.cloudflaredrunning on the VM publishes this face at awss://URL.
- an MCP face on
- On your machine β the
packages/extensionMV3 extension runs in a dedicated Chrome profile, dials out to thatwss://URL, and drives a real tab withchrome.debugger(CDP).
βββββββββββββββββββββββββ CLOUD VM βββββββββββββββββββββββββ ββββββββββββββ YOUR MACHINE ββββββββββββββ
β AI Agent ββMCPβββΆ bridge-server β β MV3 extension (agent profile) β
β (Claude Code / ββ MCP face localhost:3000/mcp β β β β
β packages/agent) ββ WS face localhost:3002 βββββββββΌββ wss ββΌβββββ dials OUT, token-authenticated β
β published by cloudflared β β chrome.debugger / CDP βββΆ a tab β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ ββββββββββββββββββββββββββββββββββββββββββ
β² nothing inbound on your machine
βββββββββ agent never touches localhost; always over the network βββββββββ
Browser tool names mirror the official Playwright MCP, so an agent (or contract) written against Playwright MCP works with almost no changes.
| Alternative | What goes wrong |
|---|---|
| A headless browser on the VM | Fresh profile with no logins, a datacenter IP, and a bot fingerprint β captchas, blocks, and 2FA prompts everywhere. |
Chrome with --remote-debugging-port |
Chrome 136+ blocks it on your default profile, so you lose your real logins anyway β and you're running your browser with an open debug port. |
| Tunneling into your machine | Inbound access to your laptop (tunnel daemons, port forwarding, access policies) just to reach a browser. Here the browser dials out instead β there is nothing to reach. |
| Sharing credentials with the agent | Passwords and 2FA secrets in an agent's context. Here the agent gets a browser that is already signed in and never sees a credential. |
| Path | What it is |
|---|---|
packages/bridge-server |
VM-side bridge. MCP browser tools β WebSocket to the extension, with token auth, /health, and per-session tab tracking. Exposes browser_*, check_local_status, and bridge_ping. This is the self-host path, and the only server in this repo β if you are running this for yourself, this is the one you want. A hosted service that wants its own transport adds one under packages/extension/src/providers/; see "Adding your own transport" below. Kilogent mode does not use it β that path goes to the relay below. |
packages/extension |
The MV3 Chrome extension. Popup for Agent URL + token, a service worker holding one outbound WS per profile (heartbeat + chrome.alarms keepalive + reconnect backoff), and a chrome.debugger executor. |
packages/relay |
Side 2 of the hosted path. One process holding one WebSocket per connected browser, so a product can address a Chrome on somebody's laptop. Presence and dispatch only β it is not an authorization boundary, and who a browser is comes from a pluggable auth provider (ticket or token). Published to npm as remote-browser-relay; npm i -g remote-browser-relay for the release, @dev for the pre-release. |
packages/agent |
A standalone terminal agent β a stand-in for the VM's real client. Connects to the bridge and runs a tool-use loop. LLM is pluggable (src/llm) β Gemini by default, Anthropic optional β with a no-API-key smoke test (npm run smoke --workspace=packages/agent, against a running bridge). |
All exposed on the one bridge MCP endpoint, mirroring Playwright MCP names:
browser_navigate Β· browser_snapshot Β· browser_click Β· browser_type Β· browser_press_key Β· browser_take_screenshot Β· browser_wait_for Β· browser_tab_list Β· browser_tab_new Β· browser_tab_select Β· browser_tab_close Β· check_local_status Β· bridge_ping
browser_snapshot returns an accessibility tree whose interactable elements are tagged with [ref=eNN] ids; you pass those refs to browser_click / browser_type. Refs are only valid for that tab's latest snapshot, so re-snapshot after navigation or DOM changes.
- Node.js 22+ (
.nvmrcpins 22.22.3) - Google Chrome
- (only if the agent runs on a different machine) cloudflared or any other way to publish one WebSocket port β see BRIDGE-SETUP.md. Not needed to try this.
- (only for the standalone
packages/agent) a Gemini API key (GEMINI_API_KEY), or setLLM_PROVIDER=anthropic+ANTHROPIC_API_KEY
Start on one machine. The agent and the browser can be on the same box, and everything below works with no VM, no tunnel and no DNS. Put it on a VM once you have watched it drive your Chrome β that is BRIDGE-SETUP.md, and it changes one URL.
git clone https://github.com/navidshad/remote-browser-mcp
cd remote-browser-mcp
npm install
npm run buildTwo tokens, and they must differ β the bridge refuses to start otherwise. They authenticate two different parties: the extension to the WebSocket face, the agent to the MCP face.
export BRIDGE_ACCESS_TOKEN=$(openssl rand -hex 32)
export BRIDGE_MCP_TOKEN=$(openssl rand -hex 32)
node packages/bridge-server/dist/index.js
# MCP face β http://127.0.0.1:3000/mcp (loopback)
# WS face β ws://0.0.0.0:3002 (the extension dials in here)- Create a dedicated Chrome profile for the agent, ideally an account-less local profile so Chrome sync can't copy the extension into or out of it.
chrome://extensionsβ Developer mode β Load unpacked β selectpackages/extension/. Install it in only this profile, and turn off Extensions sync β that isolation is what keeps the agent off your other profiles.- Open the popup β + Add profile. Agent URL is
ws://localhost:3002on one machine (wss://β¦once it is behind a tunnel); Access Token is yourBRIDGE_ACCESS_TOKEN. Press Save. The status line should read Connected. - Keep a window of that profile open whenever the agent may browse β background is fine, focus is not required. The first command attaches
chrome.debuggerand shows Chrome's "β¦started debugging this browser" bar; leave it in place.
claude mcp add --transport http browser http://127.0.0.1:3000/mcp \
--header "Authorization: Bearer $BRIDGE_MCP_TOKEN"
claude mcp list # browser β β ConnectedThen ask it to open a page. You should watch it happen in your own window.
Two useful checks, and they answer different questions.
npm run test:mock # the whole path β real bridge, real Executor, real MCP clients, mocked ChromeThat needs nothing running and no tokens: it spawns its own bridge and proves the server half works on this machine. If it passes and your popup still will not connect, the problem is the extension, the profile or the token β not the build.
curl -s localhost:3000/health # β {"status":"ok",β¦} β liveness, no credential needed
curl -s localhost:3000/status -H "Authorization: Bearer $BRIDGE_MCP_TOKEN" # β "extensionConnected":true
BRIDGE_MCP_TOKEN=$BRIDGE_MCP_TOKEN node packages/bridge-server/dist/test-client.js # bridge_ping β "pong"Those ask the bridge you are actually running whether your Chrome has arrived.
/health is deliberately thin. It used to report whether a browser was attached, how many tabs it
held and which sessions were live β a description of a specific person's Chrome, served to anyone
who could reach the port. That moved to /status, behind the token; /health stays anonymous
because a tunnel health check has no credential.
One release per merge to main, covering every package. A release here is a snapshot of the
repo: it always states where all packages stand, so you can tell which extension goes with which
relay. The extension zip is attached every time, even when the change was elsewhere β the latest
release must always be somewhere you can download a working extension from.
What is skipped is the publishing, not the release: scripts/resolve-versions.mjs path-filters
each package independently, so a relay-only change does not republish an identical extension. If
nothing changed anywhere, no release is cut.
| Package | Where it goes | How to get it |
|---|---|---|
| Chrome extension | attached to the GitHub Release | download, unzip, load unpacked |
remote-browser-relay |
npm | npm i -g remote-browser-relay |
dev publishes the relay as a prerelease on npm's dev tag (npm i -g remote-browser-relay@dev)
and cuts no GitHub Release β a pre-release is for whoever asked for it by name.
npm test # everything CI gates on β one command, same result
npm run versions # what the next release would be, and whyOne workflow run per merge. CI runs on pull requests and gates the merge; Release runs on a push
to main and decides what ships. They used to both run on main, running the same suite twice
against the same commit.
npm test runs exactly what CI gates on, and npm run test:ci-parity proves it by reading both
files β so a step added to ci.yml and not to npm test fails immediately, rather than the next
time somebody trusts a green laptop.
The workflow is four jobs, not four files, and that is deliberate. A release has to list where
all packages stand, so something must see every outcome at once β across separate workflow files
that means workflow_run chaining, which reintroduces "which commit is this about" and is where
release pipelines quietly ship the wrong thing. Jobs give the same separation with needs doing
the coordination:
resolve βββ¬βββΆ relay (npm, only if packages/relay changed)
ββββΆ extension (stamp + zip, always)
ββββββββββββββββΆ publish (one GitHub Release, from both outcomes)
A failure is scoped to its package. A relay publish that fails does not stop the extension being built and released β the release says so instead, in the table. Anything other than an outright success is reported as not published, because a release naming a version npm does not have is worse than a red build.
From conventional-commit subjects: feat is a minor, a ! or a BREAKING CHANGE: footer is a
major, everything else is a patch. Two rules are load-bearing:
- The path filter decides whether to release; the type only decides how big. Any commit
touching a package's own paths releases it. An unrecognised type β
chore,ci,refactor, an unparseable subject β falls through to a PATCH rather than to "no release". The conventional way round, where onlyfeat/fixrelease, means arefactor(relay):that changes the shipped bundle publishes nothing and reports success. - While the major is 0, a breaking change bumps the MINOR rather than jumping to 1.0.0. Reaching 1.0.0 should be somebody's decision.
Two packages, two boundaries, and the difference is not an inconsistency. The relay's is npm's
own gitHead for the published version β it cannot drift from what was actually published, which a
tag can. The extension is published to no registry, so an extension-v* git tag is its record,
pushed only after the release succeeded.
npm run test:mock # bridge round-trip against a fake-extension WS client
npm run test:profiles # multi-profile / multi-session harness
npm run build --workspacesEach package also has dev (tsx watch), start, and typecheck scripts.
- Two tokens, and they must differ.
BRIDGE_ACCESS_TOKENauthenticates the extension dialling in;BRIDGE_MCP_TOKENauthenticates the agent asking for work. The bridge refuses to start if you set them to the same value β one is typed into a popup on a laptop, the other pasted into an agent config, so they leak through different accidents, and sharing one would mean a leaked agent token also lets the holder impersonate the extension and take over the browser. - The WS face authenticates in-band, as the first frame β a browser WebSocket cannot send
CF-Access-*headers, so the WS hostname must have no Cloudflare Access policy in front of it. Every frame after that handshake is schema-validated and size-bounded (protocol.ts); the socket itself caps one frame at 12 MB. - The MCP face requires a bearer token and binds to loopback by default. It used to have no authentication at all, on the reasoning that loopback was the boundary β which holds until one tunnel ingress rule exists, and was never a boundary between users on a shared box. Set
BRIDGE_BIND_HOSTif you genuinely mean to expose it; the token is then the only thing in front of a fully logged-in Chrome. - Sessions are mandatory. Every call is routed to the tab group its MCP session owns, so a request that names no session is refused rather than being run against a shared "default".
- The extension is the trust boundary. It can drive any tab in its profile via
chrome.debugger; keep it in a dedicated profile with only the accounts the agent needs. - Keepalive is the known risk. MV3 evicts idle service workers; the WS heartbeat keeps it resident and a 1-minute
chrome.alarmsrevives it, re-attachingchrome.debuggerlazily on the next command.