经 AI Skill Hub 精选评估,Unbrowse浏览器MCP工具 获评「推荐使用」。这款MCP工具在功能完整性、社区活跃度和易用性方面表现出色,AI 评分 7.8 分,适合有一定技术背景的用户使用。
Unbrowse浏览器MCP工具 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
Unbrowse浏览器MCP工具 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
# 方式一:通过 Claude Code CLI 一键安装
claude skill install https://github.com/unbrowse-ai/unbrowse
# 方式二:手动配置 claude_desktop_config.json
{
"mcpServers": {
"unbrowse---mcp--": {
"command": "npx",
"args": ["-y", "unbrowse"]
}
}
}
# 配置文件位置
# macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
# Windows: %APPDATA%/Claude/claude_desktop_config.json
# 安装后在 Claude 对话中直接使用 # 示例: 用户: 请帮我用 Unbrowse浏览器MCP工具 执行以下任务... Claude: [自动调用 Unbrowse浏览器MCP工具 MCP 工具处理请求] # 查看可用工具列表 # 在 Claude 中输入:"列出所有可用的 MCP 工具"
// claude_desktop_config.json 配置示例
{
"mcpServers": {
"unbrowse___mcp__": {
"command": "npx",
"args": ["-y", "unbrowse"],
"env": {
// "API_KEY": "your-api-key-here"
}
}
}
}
// 保存后重启 Claude Desktop 生效
## ⚠️ The Anthropic skill path is deprecated as of v6.14.0 Agents should connect via the MCP server. The CLI (unbrowse ...) and SDK are unaffected. Add this to your MCP host config (Claude Desktop, Cursor, Codex, or any MCP-compatible client):Then run> { > "mcpServers": { > "unbrowse": { > "command": "npx", > "args": ["-y", "unbrowse", "mcp"] > } > } > } >npx unbrowse setuponce. See SKILL.md for the migration note. This repo will receive critical fixes for one more minor cycle, then sunset.
This package installs the unbrowse CLI.
Unbrowse is a local Model Context Protocol (MCP) server and CLI that turns any website into a reusable API interface for agents. It captures network traffic, reverse-engineers the real endpoints underneath the UI, and stores what it learns in a shared marketplace so the next agent can reuse it instantly.
One agent learns a site once. Every later agent gets the fast path.
Unbrowse is a drop-in replacement for OpenClaw / agent-browser browser flows for agents: on the API-native path it is typically ~30x faster, ~90% cheaper, and turns repeated browser work into reusable route assets.
Security note: capture and execution stay local by default. Credentials stay on your machine. Learned API contracts are published to the shared marketplace only after capture. See SKILL.md for the deprecation notice and MCP migration block.
Treat each successful browser submit as a dependency boundary.
/date-selection.html or /payment.html unless the current session already reached them through the real page flow.unbrowse_submit for the actual transition, then trust the returned url, session_id, and any next-step hints over your own assumptions.unbrowse_sync after a good transition so the route graph records which request chain unlocked the next page.abandonedCart, session_expired, or a wrong audience/product variant, restart from the last known good upstream step and walk forward again.The dependency graph is not just API-to-API. On JS-heavy checkout flows it also captures browser-state prerequisites: selected product, resident/non-resident audience, date, slot, auth, and cart state. Future agents should reason from those prerequisites before calling deeper steps.
curl -fsSL https://unbrowse.ai/install.sh | sh
That installer now follows the Kuri pattern: detect platform, download the matching release tarball, install `unbrowse` into `~/.local/bin`, then run `unbrowse setup`.
bash
git clone --single-branch --depth 1 https://github.com/unbrowse-ai/unbrowse.git ~/unbrowse cd ~/unbrowse && ./setup --host off
`./setup` installs repo dependencies, prebuilds the packaged CLI runtime, installs a stable `unbrowse` shim, and then runs the real first-time bootstrap: ToS acceptance, agent registration + API-key caching, and wallet detection when present.
If a wallet is configured, that wallet address becomes the contributor/payment truth: it is synced onto your agent profile, used as the destination for contributor payouts when your routes earn, and used as the spending wallet for paid marketplace routes.
Recommended for new installs: set up Crossmint `lobster.cash` during bootstrap. `unbrowse setup` now encourages it, and when the tooling is already present it will try `npx @crossmint/lobster-cli setup` automatically. That wallet becomes the payout destination for contributed routes and the spending wallet for paid marketplace routes.
Unbrowse supports wallet providers such as Crossmint `lobster.cash` for x402-gated routes. If you use `lobster.cash`, set `LOBSTER_WALLET_ADDRESS`. Other providers can use `AGENT_WALLET_ADDRESS` and optional `AGENT_WALLET_PROVIDER`.
For repeat npm use after a healthy publish:
bash npm install -g unbrowse unbrowse setup
The npm package is binary-first: install downloads the prebuilt Bun-compiled CLI for your platform. It does not ship the TypeScript runtime or JS fallback launcher.
On supported platforms, install now fails fast if the matching GitHub release asset is missing or unreachable.
For generic MCP hosts:
bash git clone --single-branch --depth 1 https://github.com/unbrowse-ai/unbrowse.git ~/unbrowse cd ~/unbrowse && ./setup --host mcp
That writes a ready-to-import MCP config to `~/.config/unbrowse/mcp/unbrowse.json`. A generic template is also published at [`/mcp.json`](https://www.unbrowse.ai/mcp.json).
If your agent host uses skills:
bash npx skills add unbrowse-ai/unbrowse ```
unbrowse shim for the repo bootstrap path./unbrowse command when Open Code is present.lobster.cash encouragement.--no-start is passed.```bash
curl..json routes when available.| Variable | Default | Description |
|---|---|---|
PORT | 6969 | Server port |
HOST | 127.0.0.1 | Server bind address |
UNBROWSE_URL | http://localhost:6969 | Base URL for API calls |
UNBROWSE_API_KEY | auto-generated | API key override |
UNBROWSE_AGENT_EMAIL | — | Preferred email-style agent name for registration |
UNBROWSE_TOS_ACCEPTED | — | Accept ToS non-interactively |
UNBROWSE_NON_INTERACTIVE | — | Skip readline prompts |
See SKILL.md for the full API reference including all endpoints, search, feedback, auth, and issue reporting.
| Method | Endpoint | Description |
|---|---|---|
| POST | /v1/intent/resolve | Search marketplace, capture if needed, execute |
| POST | /v1/skills/:id/execute | Execute a specific skill |
| POST | /v1/auth/login | Interactive browser login |
| POST | /v1/auth/steal | Import cookies from browser/Electron storage |
| POST | /v1/search | Semantic search across all domains |
| POST | /v1/search/domain | Semantic search scoped to a domain |
| POST | /v1/feedback | Submit feedback (affects reliability scores) |
| POST | /v1/skills/:id/verify | Health check skill endpoints |
| POST | /v1/skills/:id/issues | Report a broken skill |
| GET | /v1/skills | List all marketplace skills |
| GET | /v1/stats/summary | Platform stats |
| GET | /health | Health check |
When you call POST /v1/intent/resolve, the orchestrator follows this priority chain:
Skills published by live capture become available to all agents on the network.
活跃开源项目,MCP生态关键工具。API自动发现特色明显,与Agent框架深度集成。生态热度高但文档待完善。
该工具使用 AGPL-3.0 协议,商用场景请仔细阅读协议条款,必要时咨询法律意见。
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
⚠️ AGPL 3.0 — 最严格的 Copyleft,网络服务端使用也需开源,SaaS 使用受限。
AI Skill Hub 点评:Unbrowse浏览器MCP工具 的核心功能完整,质量良好。对于Claude Desktop / Claude Code 用户来说,这是一个值得纳入个人工具库的选择。建议先在非生产环境试用,再逐步推广。
| 原始名称 | unbrowse |
| Topics | MCP协议浏览器自动化API发现智能代理Agent工具 |
| GitHub | https://github.com/unbrowse-ai/unbrowse |
| License | AGPL-3.0 |
| 语言 | Shell |
收录时间:2026-05-24 · 更新时间:2026-05-24 · License:AGPL-3.0 · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端