Chromium Bridge
@dashi96
关于 Chromium Bridge
MCP bridge between Chromium browsers and Claude Code — browser automation tools + Claude chat panel for browsers where the official Claude in Chrome extension doesn't work (Arc, Vivaldi, …)


配置
使用下面的配置,将此服务器添加到你的 MCP 客户端。
{
"mcpServers": {
"chromium-bridge": {
"command": "npx",
"args": [
"chromium-bridge"
]
}
}
}工具
未检测到工具
工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。
概览
What is Chromium Bridge?
An MCP bridge between Chromium browsers and Claude Code. It gives Claude Code a set of browser_* automation tools plus a Claude chat panel inside the browser — aimed at Chromium browsers where the official "Claude in Chrome" extension isn't available (Arc, Vivaldi, Brave, …).
Two parts:
- extension/ — an MV3 extension whose service worker keeps a WebSocket to the server and drives the tab through the Chrome DevTools Protocol (CDP).
- server/ — a stdio MCP server that exposes the
browser_*tools to Claude Code.
How to use Chromium Bridge?
Add it to your MCP client config:
{
"mcpServers": {
"chromium-bridge": {
"command": "npx",
"args": ["chromium-bridge"]
}
}
}
Then install the extension in the browser profile you want to automate. The tools only work while the server is running (typically an active Claude Code session).
Tools
| Tool | What it does |
|---|---|
browser_status | Check the connection to the extension |
browser_tabs_list | List tabs (id, title, URL) |
browser_tab_create / browser_tab_close | Open / close a tab |
browser_navigate | Navigate to a URL; back/forward for history |
browser_page_text | Page title, URL, and visible text |
browser_computer | Mouse/keyboard/screenshots via CDP: click, drag, hover, type, key combos, scroll, zoomed screenshots |
browser_read_page | Accessibility tree with ref ids (filter=interactive) |
browser_find | Find elements by text/role, returns refs |
browser_form_input | Set input/textarea/select/checkbox/contenteditable values |
browser_click | DOM click by CSS selector |
browser_upload_file | Put files into an <input type="file"> |
browser_javascript | Run JS on the page (await supported) |
browser_console_messages | Tab console (with a regex filter) |
browser_network_requests | Tab network requests (with a regex filter) |
browser_resize_window | Window size |
browser_gif_start / browser_gif_stop | Record a GIF of the tab to a file |
Everything except basic tab operations runs through chrome.debugger (CDP): screenshots don't require activating the tab, and clicks are real mouse events.
Limitations
- The extension lives in one browser profile — install it in the one you want to automate.
- It only works while the MCP server is running.
Where is the source code?
The source is on GitHub, linked from the repository URL on this page.
基本信息
浏览器自动化 分类下的更多 MCP 服务器
Apify Model Context Protocol (MCP) Server
apifyThe Apify MCP server enables your AI agents to extract data from social media, search engines, maps, e-commerce sites, or any other website using thousands of ready-made scrapers, crawlers, and automation tools available on the Apify Store.
App Store Scraper MCP Server
appreply-coThis is an MCP server that provides tools to LLMs for searching and analyzing apps from both Google Play Store and Apple App Store – perfect for ASO.
MCP server w/ Browser Use
JovaniPinkFastAPI server implementing MCP protocol Browser automation via browser-use library.
@mendableai/firecrawl Mcp Server
mendableaiThe API to search, scrape, and interact with the web at scale. 🔥
BrowserTools MCP
AgentDeskAIMonitor browser logs directly from Cursor and other MCP compatible IDEs.
评论