sendblue-browser
OfficialClick 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., "@sendblue-browsernavigate to example.com and take a screenshot"
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.
sendblue-browser-use
A standalone debug browser for agents. Stealth-patched Chromium behind a tiny HTTP API, with persistent named sessions, an easy purge endpoint, configurable auto screenshots, and CDP attach so any client (Playwright, Puppeteer, undetected-chromedriver, custom scripts) can drive it.
It runs as its own process — not tied to any one Claude / Cursor / Codex session — so multiple agents can share it concurrently, debug each other's flows, and reuse a logged-in session without paying the auth tax every run.
Why this exists
Need | What you get |
Not coupled to a single agent | Long-running HTTP daemon. Any tool with a bearer token can drive it. |
Doesn't look automated | Chromium patched via |
Reusable sessions | Named persistent profiles. Log in once, every subsequent debug run reuses the cookies. |
One-click reset |
|
Multi-agent friendly | Each session is an isolated |
CDP attach |
|
Auto evidence | Navigation screenshots follow |
HTTP-controlled | Plain |
Self-contained deploy | One |
Related MCP server: open_browser_use
Quick start (local)
Prereqs: Bun >=1.3 and Node.js >=20 on your PATH.
git clone https://github.com/sendblue-api/sendblue-browser-use.git
cd sendblue-browser-use
bun install
bun --bun x patchright install chromium
cp .env.example .env
# generate and set the required token
TOKEN="$(openssl rand -hex 32)"
sed -i.bak "s/^BROWSER_USE_API_KEY=.*/BROWSER_USE_API_KEY=$TOKEN/" .env
rm .env.bak
bun run devThen in another terminal:
source .env
TOKEN="Authorization: Bearer $BROWSER_USE_API_KEY"
# 1. create a persistent session (log in here once, reuse it forever)
curl -s -X POST http://127.0.0.1:8787/sessions \
-H "$TOKEN" -H "Content-Type: application/json" \
-d '{"name":"qa","persistent":true}'
# 2. navigate
curl -s -X POST http://127.0.0.1:8787/sessions/qa/navigate \
-H "$TOKEN" -H "Content-Type: application/json" \
-d '{"url":"https://trybloom.so/"}'
# 3. screenshot
curl -s http://127.0.0.1:8787/sessions/qa/screenshot?fullPage=true \
-H "$TOKEN" -o /tmp/qa.png
# 4. wipe state without losing the session
curl -s -X POST http://127.0.0.1:8787/sessions/qa/purge -H "$TOKEN"Quick start (Docker)
echo "BROWSER_USE_API_KEY=$(openssl rand -hex 32)" > .env
docker compose up -dSame API, exposed on 127.0.0.1:8787. Data persists in ./data/. CDP stays loopback-only inside the container by default; to attach CDP from the host, uncomment CDP_BIND and the 127.0.0.1:9222:9222 port mapping in docker-compose.yml on a trusted machine only.
Install into your agent
The repo ships three packaging layers so any agent can drive the daemon with one line of config.
MCP (Claude Desktop, Codex, Cursor, Antigravity, Cline, Windsurf)
The cross-agent path. Wraps the HTTP API as MCP tools (health, create_session, navigate, screenshot, script, get_cdp_url, purge_session, etc).
{
"mcpServers": {
"sendblue-browser": {
"command": "npx",
"args": ["-y", "sendblue-browser-mcp@0.2.3"],
"env": {
"BROWSER_USE_URL": "http://127.0.0.1:8787",
"BROWSER_USE_API_KEY": "<same token you start the daemon with>"
}
}
}
}Drop into ~/.cursor/mcp.json, ~/Library/Application Support/Claude/claude_desktop_config.json, ~/.gemini/config/mcp_config.json, etc. For Codex:
codex mcp add sendblue-browser \
--env BROWSER_USE_URL=http://127.0.0.1:8787 \
--env BROWSER_USE_API_KEY=<daemon-token> \
-- npx -y sendblue-browser-mcp@0.2.3Wrapper source: mcp/.
Claude Code plugin
/plugin install sendblue-api/sendblue-browser-usePulls .claude-plugin/plugin.json + skills/sendblue-browser/SKILL.md from this repo.
Codex / Antigravity / Cline skill
The same skills/sendblue-browser/SKILL.md works as a skill across Codex, Google Antigravity, and Cline. Copy the folder into:
Agent | Path |
Codex |
|
Antigravity |
|
Cline | enable Skills in Settings, then drop in its skills directory |
AGENTS.md repos
If your repo already follows the agents.md convention, the AGENTS.md in this repo doubles as a copy-pasteable section for any consumer repo that wants to call this daemon.
API
All routes require Authorization: Bearer $BROWSER_USE_API_KEY except /health.
Method | Path | Body / Query | Returns |
|
| — |
|
|
| — |
|
|
|
|
|
|
| — | session info + current page url/title |
|
| — |
|
|
| — |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| — |
|
POST /sessions/:name/script passes code directly to Playwright's page.evaluate. Send a JavaScript expression, or wrap statements in an IIFE. Scripts time out after 30s by default; pass timeoutMs up to 120000, or 0 to disable the request timeout.
{ "code": "(() => { const x = 1; return x; })()" }Errors
All non-2xx responses share the same envelope. Failures from Playwright are truncated to one line before being returned; the full message is logged server-side with proxy credentials redacted.
{ "error": { "code": "navigate_failed", "message": "net::ERR_NAME_NOT_RESOLVED" } }Status | Code | Meaning |
400 |
| request body is required but was missing |
400 |
| body was not valid JSON |
400 |
| body failed Zod validation (see |
401 |
| missing or wrong bearer token |
404 |
| session does not exist |
409 |
| a session with that name is already running |
409 |
| persistent sessions don't expose the shared CDP url |
422 |
|
|
500 |
| unexpected — check server logs |
502 |
| Chromium-side failure |
Session options
{
name: string; // required, [a-z0-9_-]
persistent?: boolean; // default true — profile data survives restarts
headless?: boolean | "new"; // persistent sessions only; non-persistent uses DEFAULT_HEADLESS
viewport?: { width, height };
userAgent?: string;
locale?: string; // default "en-US"
timezone?: string;
traces?: boolean; // capture a Playwright trace.zip on session close
proxy?: { server, username?, password?, bypass? };
}Cookie shape
POST /sessions/:name/cookies accepts up to 500 Playwright-style cookies:
{
cookies: Array<{
name: string;
value: string;
url?: string; // absolute URL, or domain + path
domain?: string;
path?: string;
expires?: number;
httpOnly?: boolean;
secure?: boolean;
sameSite?: "Strict" | "Lax" | "None";
}>;
}Each cookie must include either url or both domain and path.
Persistent vs non-persistent
persistent: true(default) — cookies, localStorage, IndexedDB persist under~/.sendblue-browser-use/profiles/<name>/. After a daemon restart, recreate the same named persistent session to reuse that profile. CDP attach is not available for these sessions because each gets its own private browser instance.persistent: false— shares the central Chromium process via a freshBrowserContext. State is in-memory only. CDP attach IS available via/sessions/:name/cdp-url, which returns the shared browser-level CDP endpoint plus atargetIdfor the session page. CDP clients can see the shared debug browser, so keep the CDP port local and trusted and select the returned target before driving.
Pick persistent for "log in once, debug for a week" workflows. Pick non-persistent when you need to attach Playwright / Puppeteer directly.
Examples
examples/attach-from-playwright.ts— connect Playwright over CDP and drive a page (run with Node/tsx as shown in the file header)examples/attach-from-puppeteer.ts— same with Puppeteerexamples/multi-agent-debug.ts— two agents driving two surfaces in parallelexamples/run-script.sh— curl-only walkthrough
Stealth notes
This is built on patchright, a maintained fork of Playwright that:
Hides
navigator.webdriverRemoves CDP runtime markers
Drops Playwright-specific extensions and command flags
Uses real Chromium so most fingerprint surfaces match a normal user
We deliberately do not pass --disable-blink-features=AutomationControlled or override userAgent/viewport by default — patchright handles those internally and our overrides would defeat its rebrowser patches. Pass an explicit userAgent per session only if you have a reason.
Why patchright over alternatives:
vs
nodriver/undetected-playwright— patchright is actively maintained, matches Playwright's API surface, and integrates cleanly with the existing TypeScript ecosystem.vs Camoufox — Camoufox uses Firefox with deeper fingerprint randomization, better for hostile scraping at scale. patchright is the right pick for QAing your own auth flows (Clerk, Stripe, Google OAuth, Cloudflare Turnstile) without the maintenance burden.
Storage
~/.sendblue-browser-use/
├── profiles/
│ └── <session>/ # persistent profile dir
└── runs/
└── <session>/
├── 2026-05-25T...-nav.png # automatic nav screenshot when policy enables it
└── 2026-05-25T...-trace.zip # if traces:true at createPOST /sessions/:name/purge clears cookies and permissions context-wide, then clears localStorage, sessionStorage, IndexedDB, ServiceWorker registrations, CacheStorage, and the console buffer for currently open pages/origins. It does not enumerate every historical origin in a persistent profile, does not delete the on-disk profile (so the session id stays valid), and does not clear browser-level HTTP cache or HSTS state. To wipe the profile too, DELETE /sessions/:name and recreate.
Automatic navigation screenshots follow NAV_SCREENSHOT_POLICY:
headless(default): only effective-headless sessions write*-nav.png, avoiding visible capture flicker in headed browsers.always: preserve legacy behavior and capture every navigation, including headed sessions.off: disable automatic navigation screenshots.
Auto-screenshots are capped at MAX_NAV_SCREENSHOTS per session (default 200, oldest deleted first). Set MAX_NAV_SCREENSHOTS=0 to disable automatic screenshots entirely. Call /screenshot explicitly when you need evidence from a headed browser.
Security
The HTTP API binds to
127.0.0.1by default. SettingBIND=0.0.0.0exposes you to your LAN — put a reverse proxy with auth in front before doing this. The Docker image setsBIND=0.0.0.0so host port-publishing works, butdocker-compose.ymlpublishes only to127.0.0.1. If youdocker run -p 8787:8787directly, you are choosing to expose the HTTP API.CDP is bound to
CDP_BIND(default127.0.0.1; the Docker image default is also loopback-only). The defaultdocker-compose.ymldoes not publish CDP; if you opt into host CDP attach, publish it to127.0.0.1only. Anyone who can reach this port gets full in-browser RCE — keep it on loopback.POST /sessions/:name/scriptruns arbitrary JS in the page context. The bearer token is the only gate. Don't share the token.Treat the bearer token as local browser/network control. A token holder can navigate Chromium to any
http(s)URL reachable from the daemon host, including localhost and private-network services.POST /sessions/:name/navigateonly acceptshttp(s)URLs —file://,chrome://, etc. are rejected.Healthcheck (
GET /health) is public so Docker/k8s probes work without a token; it returns service metadata only.
Architecture
HTTP :8787 ──► Hono router ──► session manager ──► patchright Chromium
│ └─► CDP :9222 (loopback; Docker opt-in)
└─► on-disk profiles + runsInspired by the Sendblue channel-server pattern (Bun + Hono + bearer auth + simple HTTP surface).
License
MIT. See LICENSE.
This server cannot be installed
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
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/sendblue-api/sendblue-browser-use'
If you have feedback or need assistance with the MCP directory API, please join our Discord server