browser-use-mcp-server vs fetch
并排对比,帮你在这两个 MCP server 之间做选择。
browser-use-mcp-server by kontext-security | fetch by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 822 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 49 | 76 |
| 官方 | — | ✓ |
| 分类 | 浏览器自动化网页抓取AI / LLM 工具 | 网页抓取AI / LLM 工具效率工具 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 10 个月前 | 本月 |
browser-use-mcp-server · 概述
MCP 服务器让 AI 智能体能通过 browser-use 控制浏览器。
fetch · 概述
一个MCP服务器,抓取网页内容并将HTML转换为Markdown,让大模型能读取网页信息。
browser-use-mcp-server · 使用场景
- 自动化网页抓取以收集数据
- AI 执行网站测试和验证
- 使 AI 能够研究和分析在线内容
fetch · 使用场景
- 大模型阅读新闻文章和博客
- 网页内容分析
- 从公共网站检索信息
- 分块读取大型网页文档
browser-use-mcp-server · 安装
安装
先决条件
- uv - 快速 Python 包管理器
- Playwright - 浏览器自动化
- mcp-proxy - stdio 模式需要
# 安装先决条件
curl -LsSf https://astral.sh/uv/install.sh | sh
uv tool install mcp-proxy
uv tool update-shell环境设置
创建 .env 文件:
OPENAI_API_KEY=你的-api-key
CHROME_PATH=可选的/chrome/路径
PATIENT=false安装依赖项
uv sync
uv pip install playwright
uv run playwright install --with-deps --no-shell chromiumClaude Desktop 配置
{
"mcpServers": {
"browser-server": {
"command": "browser-use-mcp-server",
"args": [
"run",
"server",
"--port",
"8000",
"--stdio",
"--proxy-port",
"9000"
],
"env": {
"OPENAI_API_KEY": "你的-api-key"
}
}
}
}fetch · 安装
安装
**使用uv(推荐)** 无需特定安装。使用uvx直接运行服务器:
uvx mcp-server-fetch**使用PIP** 通过pip安装:
pip install mcp-server-fetch然后运行:
python -m mcp_server_fetchClaude桌面配置
{
"mcpServers": {
"fetch": {
"command": "uvx",
"args": ["mcp-server-fetch"]
}
}
}