Skip to main content
Glama
dreamsxin

browseros-mcp

by dreamsxin

browser-control-mcp

Standalone browser control MCP server — supports both BrowserOS and standard Chrome.

Features

  • 19 MCP tools: browser_state, tabs, bookmarks, history, tab_groups, navigate, snapshot, diff, act, download, upload, read, grep, screenshot, pdf, wait, windows, evaluate, run

  • Dual backend: Works with both BrowserOS (custom CDP domains) and standard Chrome (Target.* CDP domain), with an optional Chrome extension bridge for full tab/window/group state

  • Auto-detection: Probes the connected browser to determine if it's BrowserOS or standard Chrome

  • Accessibility Tree first: Uses AX tree snapshots with [ref=eN] stable handles instead of CSS selectors

  • HTTP+SSE transport: MCP server exposed via HTTP StreamableHTTPTransport (Hono)

  • Auto-reconnect: WebSocket connection with keepalive and automatic reconnection

  • Auto-launch: Optionally start Chrome/BrowserOS automatically

Related MCP server: Chrome Profile MCP Server

Documentation

Quick Start

# Install dependencies
npm install

# Start Chrome with remote debugging (if not already running)
chrome --remote-debugging-port=9222

# Start the MCP server (auto-detects backend)
npm start -- --cdp-port 9222 --mcp-port 3000

Or with auto-launch:

npm start -- --auto-launch --backend auto

Configuration

CLI Arguments

Argument

Default

Description

--cdp-port

9222

Chrome CDP port

--cdp-host

127.0.0.1

Chrome CDP host

--mcp-port

3000

MCP HTTP server port

--backend

auto

Backend mode: browseros, chrome, or auto

--chrome-path

(auto)

Chrome executable path (for auto-launch)

--auto-launch

false

Automatically start Chrome

--name

browser-control-mcp

MCP server name

--version

0.1.0

MCP server version

Environment Variables

All CLI arguments can also be set via environment variables with BROWSER_CONTROL_MCP_ prefix:

BROWSER_CONTROL_MCP_CDP_PORT=9222
BROWSER_CONTROL_MCP_BACKEND=chrome
BROWSER_CONTROL_MCP_AUTO_LAUNCH=1

Backend Modes

browseros mode

Uses BrowserOS custom CDP domains:

  • Browser.getTabs, Browser.createTab, Browser.closeTab — tab management

  • Browser.getWindows, Browser.createWindow — window management

  • Browser.getTabGroups, Browser.createTabGroup — tab group management

All 19 tools are fully functional.

chrome mode

Uses standard Chrome CDP domains:

  • Target.getTargets, Target.createTarget, Target.closeTarget — tab management

  • tab_groups and windows require the optional Chrome Extension Bridge because native Chrome CDP does not expose the full browser UI model

  • Core page tools and browser_state work in standard Chrome; windows, tab_groups, bookmarks, and history require the optional Chrome Extension Bridge for full Chrome support

With the bridge extension built and loaded from D:\work\chrome-extension-bridge\dist, Chrome mode can use real tabId, windowId, active-tab state, windows, and tab groups. See docs/chrome-extension-bridge.md for the design and setup details.

Build the extension with the default MCP server port you plan to use:

cd D:\work\chrome-extension-bridge
npm run build -- --port 3100

For command-line loading, use an isolated Chrome profile so Chrome does not reuse an existing process and ignore --load-extension:

npm start -- --auto-launch --backend chrome --cdp-port 9333 --mcp-port 3100 \
  --chrome-user-data-dir .tmp/chrome-bridge-profile \
  --chrome-extension D:\work\chrome-extension-bridge\dist

auto mode (default)

Probes the connected browser's /json/version response:

  • If Browser field contains "BrowserOS" → browseros mode

  • Otherwise → chrome mode

MCP Tools

Detailed function and parameter documentation is available in docs/mcp-tools-reference.md.

Tool

Description

BrowserOS

Chrome

browser_state

Read or wait for the unified browser space model

✅ Full

✅ Adapted

tabs

List, create, close, activate tabs

✅ Full

✅ Adapted

tab_groups

Manage tab groups

✅ Full

✅ With bridge

navigate

Navigate to URL, back, forward, reload

snapshot

Capture accessibility tree snapshot

diff

Show changes since last snapshot

act

Click, type, fill, press, hover, scroll, drag

download

Download files from clicked links

upload

Upload files to <input type=file>

read

Read page content as markdown/text/links

grep

Search accessibility tree or page content

screenshot

Capture page screenshot

pdf

Save page as PDF

wait

Wait for text, selector, or time

windows

Manage browser windows

✅ Full

✅ With bridge

evaluate

Evaluate JavaScript on a page

run

Run JavaScript with browser SDK access

Snapshot refs and page actions

The snapshot tool is the main page-interaction contract. It captures the page Accessibility Tree, renders actionable elements with stable handles like [ref=e12], and stores the ref map for that page. Tools that operate on specific elements use those refs instead of CSS selectors:

  • act uses refs for click, fill, hover, focus, check, uncheck, select, scroll, and drag.

  • download clicks a snapshot ref to trigger the download.

  • upload resolves a snapshot ref for an <input type=file>.

  • grep with over="ax" searches snapshot lines and returns matching refs.

  • screenshot with annotate=true takes a fresh snapshot and paints the ref numbers onto the image.

The usual loop is:

tabs list -> snapshot -> act(ref=eN) -> diff -> act(...) -> diff

snapshot and diff update the page observer state. navigate automatically returns a fresh snapshot because navigation invalidates old refs, and act automatically returns a diff so the caller can see the effect of the action. If the DOM changes substantially, call snapshot again before reusing refs.

MCP Prompts

The server registers one discoverable MCP prompt:

Prompt

Description

Arguments

browser-automation

Browser observe-act-verify guidance for browser tasks.

task (optional string)

Clients that support MCP prompts, such as Claude Desktop, can list prompts and select browser-automation to insert the browser workflow guidance into a conversation. The optional task argument appends a concrete browser task to the prompt.

LangChain Test Agent

The repository includes a Python smoke-test agent that connects to the MCP server, discovers browser tools, fetches the browser-automation MCP prompt, and calls an OpenAI-compatible chat model through LangChain.

Install Python dependencies:

pip install langchain-openai langchain-core requests

Create example/browser_agent_config.json from example/browser_agent_config.example.json and fill in your model settings:

{
  "mcp_url": "http://127.0.0.1:3000/mcp",
  "base_url": "https://api.deepseek.com",
  "model": "deepseek-v4-flash",
  "api_key": "your-api-key",
  "temperature": 0,
  "workspace_dir": "."
}

The real config file is ignored by git. Command-line flags override environment variables, which override the config file.

Start Chrome and this MCP server, then run the agent. Without a positional prompt, the script starts a persistent interactive session and keeps the MCP browser session plus chat history alive until you type exit or quit:

# In one terminal
npm start -- --backend chrome --mcp-port 3000

# In another terminal
python example/browser_agent_langchain.py

You can also pass a one-shot task and exit after the model finishes:

python example/browser_agent_langchain.py "open https://example.com and summarize it"

The test agent also injects three local file tools for saving and inspecting test artifacts inside workspace_dir: local_list_files, local_read_file, and local_write_file. A fuller browser-plus-file test prompt is:

python example/browser_agent_langchain.py "打开 https://www.baidu.com/,总结页面主要内容,并保存到 outputs/baidu-summary.md,然后读回文件确认"

Interactive mode prints extra diagnostics by default so tool selection can be debugged while the model is running. The diagnostics include status transitions such as thinking, model-returned, executing, tool-returned, and finalizing; the approximate message size sent to the model; the latest input preview; response finish reason; token usage and prompt cache hit rate when the provider returns cache fields such as prompt_cache_hit_tokens; tool calls; tool-result previews; and warnings for suspicious patterns such as empty model responses, invalid tool calls, repeated identical calls, unknown tools, or extra inspection tools after a successful read. Use --quiet to reduce this output, or --verbose to enable the same diagnostics for one-shot prompts.

Diagnostic lines are colorized by data type when stderr is an interactive terminal: status is cyan, model metadata is magenta, tool calls are yellow, tool results are green, MCP events are blue, configuration is gray, and warnings or errors are red. Use --color always or --color never to override automatic detection.

If --mcp-url or BROWSER_CONTROL_MCP_URL is not provided, the script prompts for the MCP URL first and defaults to http://127.0.0.1:3000/mcp.

For OpenAI-compatible local or proxy endpoints, update the config file or pass --base-url and --model, for example:

python example/browser_agent_langchain.py --base-url http://127.0.0.1:8000/v1 --model qwen2.5 "list tabs"

Local Agent Service

example/browser_agent_service.py wraps the same LangChain + MCP logic in a small local HTTP service so browser UIs can reuse the agent loop instead of reimplementing tool-calling in JavaScript.

It uses the same example/browser_agent_config.json file and Python dependencies as the CLI script, then exposes:

  • GET /health

  • POST /api/chat

  • POST /api/reset

Start it after the MCP server:

# In one terminal
npm start -- --backend chrome --mcp-port 3000

# In another terminal
python example/browser_agent_service.py --host 127.0.0.1 --port 8001

Chrome Side Panel Extension

The repo also includes a simple Chrome MV3 side-panel extension in example/chrome-sidepanel-agent. It connects to the local Python service, persists chat state in chrome.storage.local, and renders the agent's returned tool/diagnostic events in an execution trace panel.

To try it:

  1. Start the MCP server and python example/browser_agent_service.py.

  2. Open chrome://extensions.

  3. Enable Developer Mode.

  4. Load example/chrome-sidepanel-agent as an unpacked extension.

  5. Click the extension icon to open the side panel.

Usage with MCP Clients

Cursor / Claude Desktop

Add to your MCP client configuration:

{
  "mcpServers": {
    "browser-control-mcp": {
      "url": "http://localhost:3000/mcp"
    }
  }
}

The default /mcp endpoint keeps Streamable HTTP session IDs for broad client compatibility. A BrowserOS-style stateless JSON response endpoint is also available at http://localhost:3000/mcp/stateless for clients that prefer a fresh MCP server and transport per request.

Direct HTTP

# Health check
curl http://localhost:3000/health

# MCP endpoint
POST http://localhost:3000/mcp
Content-Type: application/json
Accept: application/json, text/event-stream

{"jsonrpc": "2.0", "method": "tools/list", "id": 1}

Architecture

flowchart TD
  A["🤖 LLM / MCP Client"]:::client --> B["🧩 Browser Control MCP Server<br/>/mcp 或 /mcp/stateless"]:::server
  B --> C["📦 Tool Registry<br/>tabs / windows / bookmarks / history / snapshot ..."]:::tool
  C --> D["🌐 BrowserSession"]:::session
  D --> E{"⚙️ 后端模式"}:::decision

  E -->|Enhanced CDP| F["🔧 Enhanced Browser CDP"]:::backend
  E -->|Standard CDP| G["🟡 Standard Chrome CDP"]:::backend
  E -->|Extension| H["🔌 Chrome Extension Bridge"]:::backend

  F --> I["📄 浏览器数据 / 操作结果"]:::result
  G --> I
  H --> I

  I --> J["✅ Structured MCP Result"]:::result
  J --> A

  classDef client fill:#3b82f6,stroke:#1e40af,color:#fff
  classDef server fill:#10b981,stroke:#047857,color:#fff
  classDef tool fill:#f59e0b,stroke:#b45309,color:#fff
  classDef session fill:#8b5cf6,stroke:#5b21b6,color:#fff
  classDef decision fill:#ec4899,stroke:#be185d,color:#fff
  classDef backend fill:#fbbf24,stroke:#d97706,color:#000
  classDef result fill:#06b6d4,stroke:#0e7490,color:#fff

简化后的主脉络

  1. LLM / MCP Client(蓝色)向 MCP 服务器发起请求。

  2. MCP Server(绿色)接收请求,调用内部的工具注册表(橙色)查找可用工具。

  3. 工具调度进入浏览器会话(紫色),根据环境选择三种后端之一(粉色决策节点)。

  4. 三种后端(黄色)各司其职:增强 CDP、标准 CDP 或 Chrome 扩展桥接,最终产生统一的浏览器数据/操作结果(青色)。

  5. 结构化 MCP 结果(青色)返回给客户端,完成闭环。

原图中扩展特有的 WebSocket 状态同步、Tab/Window 模型拼接等内部实现细节已被省略,让主干更突出。

┌─────────────────────────────────────────────────────────┐
│                    HTTP+SSE Server                        │
│                  (Hono + @hono/mcp)                      │
│                 /mcp + /mcp/stateless                     │
├─────────────────────────────────────────────────────────┤
│                  MCP Tool Layer                           │
│            19 tools (framework + registry)               │
│          ToolContext { session, signal }                 │
├─────────────────────────────────────────────────────────┤
│                BrowserSession                             │
│    ┌────────────┬───────────┬──────────┐                │
│    │ PageManager │ Observer  │  Input   │                │
│    │ (dual-mode) │ (AX tree) │ (actions) │                │
│    └──────┬─────┴─────┬─────┴────┬─────┘                │
│           │     Navigation    Screenshot                  │
│           │    FrameRegistry  WindowManager               │
├───────────┴─────────────────────────────────────────────┤
│              CdpConnectionImpl                            │
│    WebSocket → /json/version → ws://devtools/browser     │
│    Proxy-based ProtocolApi (55+ CDP domains)             │
├─────────────────────────────────────────────────────────┤
│         Chrome / BrowserOS (CDP port 9222/9100)          │
└─────────────────────────────────────────────────────────┘

Development

# Install dependencies
npm install

# Run in dev mode (auto-reload)
npm run dev

# Type check
npm run typecheck

# Build
npm run build

License

MIT

F
license - not found
-
quality - not tested
B
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

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

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/dreamsxin/browser-control-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server