经 AI Skill Hub 精选评估,当前MCP览器 获评「推荐使用」。这款MCP工具在功能完整性、社区活跃度和易用性方面表现出色,AI 评分 7.5 分,适合有一定技术背景的用户使用。
参与Codex中学的Chrome李海窗口与参与Claude编程器一个常用的览器端器
当前MCP览器 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
参与Codex中学的Chrome李海窗口与参与Claude编程器一个常用的览器端器
当前MCP览器 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
# 方式一:通过 Claude Code CLI 一键安装
claude skill install https://github.com/DeliciousBuding/codex-browser-bridge
# 方式二:手动配置 claude_desktop_config.json
{
"mcpServers": {
"--mcp--": {
"command": "npx",
"args": ["-y", "codex-browser-bridge"]
}
}
}
# 配置文件位置
# macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
# Windows: %APPDATA%/Claude/claude_desktop_config.json
# 安装后在 Claude 对话中直接使用 # 示例: 用户: 请帮我用 当前MCP览器 执行以下任务... Claude: [自动调用 当前MCP览器 MCP 工具处理请求] # 查看可用工具列表 # 在 Claude 中输入:"列出所有可用的 MCP 工具"
// claude_desktop_config.json 配置示例
{
"mcpServers": {
"__mcp__": {
"command": "npx",
"args": ["-y", "codex-browser-bridge"],
"env": {
// "API_KEY": "your-api-key-here"
}
}
}
}
// 保存后重启 Claude Desktop 生效
<p align="center"> <img src="assets/hero.png" alt="codex-browser-bridge" width="720"> </p>
<p align="center"> <h1 align="center">codex-browser-bridge</h1> <p align="center"> Let Claude Code and other MCP agents control your existing Chrome browser through Codex Desktop's browser bridge. </p> </p>
<p align="center"> <a href="https://github.com/DeliciousBuding/codex-browser-bridge/blob/main/LICENSE"> <img src="https://img.shields.io/badge/license-MIT-blue?style=flat-square" alt="License"> </a> <a href="https://github.com/DeliciousBuding/codex-browser-bridge/releases"> <img src="https://img.shields.io/github/v/release/DeliciousBuding/codex-browser-bridge?style=flat-square" alt="Latest Release"> </a> <a href="https://github.com/DeliciousBuding/codex-browser-bridge/actions"> <img src="https://img.shields.io/github/actions/workflow/status/DeliciousBuding/codex-browser-bridge/ci.yml?style=flat-square" alt="CI"> </a> <a href="https://codecov.io/gh/DeliciousBuding/codex-browser-bridge"> <img src="https://img.shields.io/codecov/c/github/DeliciousBuding/codex-browser-bridge?style=flat-square" alt="Coverage"> </a> <a href="https://goreportcard.com/report/github.com/DeliciousBuding/codex-browser-bridge"> <img src="https://goreportcard.com/badge/github.com/DeliciousBuding/codex-browser-bridge?style=flat-square" alt="Go Report Card"> </a> <a href="README.zh-CN.md">中文</a> </p>
---
codex-browser-bridge exposes Codex Desktop's Chrome browser bridge as an MCP server.
It connects to the local Codex browser named pipe, speaks the same length-prefixed JSON-RPC protocol, and provides browser-control tools to Claude Code or any MCP-compatible agent.
codex-browser-use-* named pipesrewrite/rust-full branchThe bridge connects to local named pipes created by Codex Desktop. If no pipe is found, start Codex Desktop first and make sure the extension is active.
npm i -g @delicious233/codex-browser-bridge
go install github.com/DeliciousBuding/codex-browser-bridge/cmd/bridge@latest
Make sure your Go binary path is available in PATH.
Current release build:
git clone https://github.com/DeliciousBuding/codex-browser-bridge.git
cd codex-browser-bridge
make build
The binary will be generated at:
bin/codex-browser-bridge.exe
Rust rewrite branch build:
git checkout rewrite/rust-full
cargo check --locked
cargo test --locked
cargo build --locked --release
The Rust binary will be generated at:
target/release/codex-browser-bridge.exe
Add the MCP server to your Claude Code settings.
{
"mcpServers": {
"codex-browser": {
"command": "codex-browser-bridge",
"args": ["-mode", "mcp"],
"transport": "stdio"
}
}
}
If you built from source, use the absolute path instead:
{
"mcpServers": {
"codex-browser": {
"command": "D:/path/to/codex-browser-bridge/bin/codex-browser-bridge.exe",
"args": ["-mode", "mcp"],
"transport": "stdio"
}
}
}
Restart Claude Code after editing the settings file.
Then ask the agent things like:
List my open browser tabs.
Open https://example.com in a new tab and take a screenshot.
Claim my current documentation tab and summarize what is visible.
The binary has three modes.
Download the latest binary from:
https://github.com/DeliciousBuding/codex-browser-bridge/releases
Then place codex-browser-bridge.exe somewhere in your PATH.
Useful for debugging the bridge without an MCP client.
codex-browser-bridge -mode cli
Connect to a specific pipe:
codex-browser-bridge -mode cli -pipe "codex-browser-use-<uuid>"
Available CLI commands:
tabs
create
close <tab_id>
user-tabs
claim <tab_id>
nav <tab_id> <url>
snapshot <tab_id>
screenshot <tab_id>
info
ping
try <method> [json_params]
quit
CLI output can include pipe IDs, tab titles, full URLs, screenshots, and page text from logged-in tabs. Redact that output before posting bug reports or feature requests.
codex-browser-bridge 是一个 MCP 服务器,允许 Claude Code 和其他 MCP 代理通过 Codex Desktop 的浏览器桥接控制现有的 Chrome 浏览器。该项目为开发者提供了一种无缝集成 AI 代理与本地浏览器的方案,无需复制浏览器配置文件,直接利用现有的 Chrome 会话进行自动化操作。
项目提供 stdio 上的 MCP 服务器、单一 Windows 二进制文件、无需复制浏览器配置、使用现有 Chrome 会话、自动发现 codex-browser-use-* 命名管道、通过 JSON-RPC 与 Codex Desktop 扩展主机通信、使用 Chrome DevTools Protocol 命令控制页面,以及包含交互式 CLI 调试模式。
系统要求:Windows 操作系统、Chrome 浏览器、运行中的 Codex Desktop、已安装并启用的 Codex Chrome Extension。开发环境要求:若从源码构建需要 Go 1.23+ 或 Rust 1.85+(用于 rewrite/rust-full 分支)。桥接通过连接 Codex Desktop 创建的本地命名管道进行通信。
提供三种安装方式:1) 通过 npm 全局安装:npm i -g @delicious233/codex-browser-bridge;2) 通过 Go 安装:go install github.com/DeliciousBuding/codex-browser-bridge/cmd/bridge@latest,确保 Go 二进制路径在 PATH 中;3) 从 GitHub Releases 下载最新二进制文件,将 codex-browser-bridge.exe 放置在 PATH 目录中。
在 Claude Code 设置中添加 MCP 服务器配置。若通过 npm/Go 安装,直接使用命令名 codex-browser-bridge;若从源码构建,使用绝对路径如 D:/path/to/codex-browser-bridge/bin/codex-browser-bridge.exe。配置中指定 args 为 ["-mode", "mcp"],transport 为 stdio。
二进制文件支持三种运行模式。交互式 CLI 模式用于调试:codex-browser-bridge -mode cli。可连接特定命名管道:codex-browser-bridge -mode cli -pipe "codex-browser-use-<uuid>"。可用 CLI 命令包括 tabs(创建、关闭标签页)、close(关闭指定标签页)、user-tabs(声明标签页)、nav(导航到指定 URL)等。
参与Codex中学的Chrome李海窗口与参与Claude编程器一个常用的览器端器不很一个常用的览器端器
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ MIT 协议 — 最宽松的开源协议之一,可自由商用、修改、分发,仅需保留版权声明。
AI Skill Hub 点评:当前MCP览器 的核心功能完整,质量良好。对于Claude Desktop / Claude Code 用户来说,这是一个值得纳入个人工具库的选择。建议先在非生产环境试用,再逐步推广。
| 原始名称 | codex-browser-bridge |
| 原始描述 | 开源MCP工具:Expose Codex Desktop's Chrome browser bridge as an MCP server for Claude Code an。⭐7 · Go |
| Topics | tag1tag2tag3 |
| GitHub | https://github.com/DeliciousBuding/codex-browser-bridge |
| License | MIT |
| 语言 | Go |
收录时间:2026-06-09 · 更新时间:2026-06-09 · License:MIT · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端