← reins.tech

How it compares

agent-browser and dev3000 (Vercel Labs) and playwright-mcp (Microsoft) are all browser tooling for coding agents, and they all start from the same place: by default each one launches and manages a browser for the agent. reins starts from the other end. It hands the agent the browser you already have open.

reins

Built fordriving the browser you already use
Browseryour real, running browsers: Chrome, Brave, Edge, Arc, Dia, all at once
Logged-inalways, because it is your profile
Attaches viaMV3 extension plus chrome.debugger. No launch flags, no debug port.
Agent interfaceCLI and a skill. Nothing to register per agent.
Extrasraw CDP escape hatch, per-site permission tiers, audit trail

agent-browser

Built forgeneral-purpose automation for agents
Browserits own Chrome for Testing, which it launches
Logged-inopt-in: reuse a profile's login state, or attach to a running Chrome
Attaches viaCDP from the outside
Agent interfaceCLI, plus an optional MCP server
ExtrasHAR recording, request mocking, React tree, web vitals

agent-browser is a fast, general automation CLI that owns its browser. reins puts an extension inside the browsers you already run, so every session is authenticated by definition, nothing new launches, and no debug port is ever exposed. The daemon only accepts the extension's unforgeable origin on 127.0.0.1.

If you need headless fleets, request mocking or CI runs, agent-browser is the better fit. If the task is "act as me, in my browser", that is reins.

dev3000

Built fordebugging your local dev server
Browserits own monitored Chrome, which it launches
Logged-inper-project profile that persists between runs
Attaches viaCDP from the outside
Agent interfaceCLI, MCP server, unified timeline log
Extrasserver and browser timeline, error replay, d3k fix

dev3000 solves a different problem: it wraps your dev server, launches a monitored browser, and merges server logs, console, network and screenshots into one timeline an AI can debug from. That is dev-loop observability, not general browser control.

They compose. dev3000 watches the app you are building, and reins drives the rest of your browser: dashboards, docs, the third-party service you are integrating.

playwright-mcp

Built forbrowser automation as an MCP server
Browserits own Playwright-managed browser: Chromium, Firefox or WebKit
Logged-inits own persistent profile; real Chrome and Edge tabs via opt-in
Attaches viaPlaywright launch; opt-in extension or CDP endpoint
Agent interfaceMCP server (stdio or HTTP), registered per client
Extrasisolated contexts, device emulation, vision and PDF caps, traces

The closest comparison: its extension mode can also drive existing tabs in your real browser (Chrome and Edge only). The defaults differ. playwright-mcp launches a Playwright-managed browser with its own persistent profile, and everything flows through an MCP server you register in each client. reins is a plain CLI, so any agent with a shell drives your everyday browsers with no per-agent setup, and one daemon serves them all at once.

Pick playwright-mcp for cross-engine coverage (Firefox, WebKit), device emulation, or clean-room isolated sessions. Pick reins when the point is acting as you, in the browser you already work in.

Other pages