Isolated multi-session Chromium runtime for external MCP clients over stdio.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag β we're steadily working through the catalog.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Run many browser sessions at once, fully isolated from each other, from one MCP server.
Every other browser MCP server gives your AI client one browser with a current tab. BrowserMesh gives it as many independent sessions as the task needs β each with its own cookies, storage, and authentication β running in parallel. Test checkout as a customer while an admin session verifies the order, in one conversation, without either seeing the other's state.
The external client reasons and plans. BrowserMesh executes browser operations, enforces isolation, orders work within each session, and returns structured results.
Works with Claude Code, Claude Desktop, Codex, Cursor, Windsurf, Qwen, and any other MCP-compatible client.
Claude Code:
Any other client, in its MCP configuration file:
That is the whole setup. On its first start BrowserMesh downloads the Chromium build it uses, so
there is no separate install step. Pass --no-auto-install to manage the browser yourself, in
which case MCP discovery still works and browser_session_create returns an actionable
BROWSER_ERROR explaining what to run.
Then ask for the work in plain language:
Test the checkout flow as a buyer and confirm the order appeared, as an admin, at the same time.
The client creates one session per role on its own. BrowserMesh also publishes a parallel_roles
prompt that spells the workflow out, so a client can offer it directly.
Check an installation without starting the protocol:
Chromium and BrowserMesh remain on your machine. There is no hosted BrowserMesh service.
On connect, BrowserMesh sends your client a short instructions string. Alongside guidance on session
addressing and bug reporting, it asks your agent to check once whether you have starred the
repository β an authenticated GitHub call, made with your own gh credentials, for a purpose
unrelated to the browser task. Nothing is gated on it and declining changes nothing. Turn the ask off
with --no-support-request, or the whole string with --no-agent-guidelines. See
Built for agent-friendly workflows.
Renamed in 0.2. The npm package was
multi-agent-browser-mcpand is nowbrowsermesh, matching the name everything else already used. Changeargsto["-y", "browsermesh"]; nothing else moves.
BrowserMesh v0.1 is intentionally small: one local Node.js process, one Chromium process, and one
non-persistent BrowserContext for every ready session.
It provides:
BrowserMesh is a browser runtime, not an internal agent framework, LLM orchestrator, message bus, Playwright fork, browser GUI, or interactive shell.
Use a separate session for each user, account, role, authentication state, or independent parallel workflow. BrowserMesh tools are normally selected by the external client rather than called by hand.
BrowserMesh v0.1 targets Node.js 24 and supports Node.js 22 as its minimum supported major version.
Clone the repository and run:
Then configure an MCP client to launch the locally built server:
For development:
There is no global:
Every browser operation explicitly identifies its session.
Every page-specific operation explicitly identifies its page.
Conceptually:
A newly created session contains one deterministic initial page.
browser_session_create returns the initial pageId immediately so an AI client does not need an additional browser_page_list call before its first browser action.
The page also appears in browser_page_list and is marked isDefault.
Session views consistently expose sessionId; page views consistently expose pageId and their owning sessionId.
The isDefault marker is informational only. Browser operations still use explicit pageId addressing.
Each ready BrowserMesh session maps to its own non-persistent Chromium BrowserContext.
Therefore independent sessions must not accidentally share:
A pageId belonging to one session cannot be used through another session.
Cross-session page addressing is rejected.
Every live session has an independent serial operation queue.
Operations targeting the same session execute deterministically in accepted order.
For example:
A read-style operation does not bypass an in-progress navigation or interaction.
A failed or timed-out operation must not poison the queue. Later accepted operations continue normally after the failed operation settles.
Each timeoutMs is one absolute budget starting when BrowserMesh accepts the operation. Time spent
waiting in the owning session queue and every later browser-adapter step consume that same budget;
no adapter step receives a renewed full timeout.
MCP request cancellation is propagated into BrowserMesh as an engine-independent operation signal.
A same-session request cancelled while queued is skipped before it can touch browser state. If a
Playwright action is already running and cannot be aborted safely, BrowserMesh keeps its queue slot
until the real action settles, so later work cannot overtake it. Passive waits detach their owned
abort listeners and timers promptly, and the session queue remains usable after cancellation. MCP
clients observe their SDK's cancellation error (typically an AbortError, or an MCP error carrying
that reason); a separate tool result after protocol cancellation is not guaranteed.
Different sessions do not share a global operation lock:
This allows independent browser workflows to run concurrently.
When session close begins:
closing;BrowserContext are closed;Repeated close of a known closing/closed session is safe and returns an idempotent success result.
A completely unknown session ID still returns SESSION_NOT_FOUND.
browser_runtime_infobrowser_session_createbrowser_session_listbrowser_session_getbrowser_session_closebrowser_page_createbrowser_page_listbrowser_page_closebrowser_navigatebrowser_backbrowser_forwardbrowser_reloadbrowser_get_urlbrowser_get_titlebrowser_snapshotbrowser_visible_textNo 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/browsermesh)<a href="https://allmcps.com/mcp/browsermesh"><img src="https://allmcps.com/api/badge/browsermesh?style=directory" alt="BrowserMesh on AllMCPs" /></a>