httprunner vs stealth-browser-mcp
并排对比,帮你在这两个 MCP server 之间做选择。
httprunner by httprunner | stealth-browser-mcp by vibheksoni | |
|---|---|---|
| Stars | ★ 4,277 | ★ 643 |
| 30天用量 | — | — |
| 综合分 | 55 | 54 |
| 官方 | — | — |
| 分类 | 浏览器自动化开发者工具testing | 浏览器自动化网页抓取开发者工具 |
| 实现语言 | Go | Python |
| 最近提交 | 5 个月前 | 本月 |
httprunner · 概述
HttpRunner 是一款全栈测试框架,包含用于 UI 自动化的 MCP 服务器功能。
stealth-browser-mcp · 概述
Stealth Browser MCP 提供反检测浏览器自动化功能,专为 MCP 兼容的 AI 代理设计。
httprunner · 使用场景
- Android 和 iOS 移动应用的自动化 UI 测试
- 通过视觉识别实现跨平台浏览器自动化
- API 测试与 UI 自动化在单一框架中的集成
stealth-browser-mcp · 使用场景
- 在带有反机器人措施的受保护网站上自动化网页抓取
- 通过 AI 聊天命令创建网站 UI 克隆
- 实时拦截和修改网络流量
httprunner · 安装
安装
- 安装 HttpRunner v5:
go install github.com/httprunner/httprunner@latest- 启动 MCP 服务器:
hrp mcp-server- 对于 Claude Desktop 配置,添加到
claude_desktop_config.json:
{
"mcpServers": {
"httprunner": {
"command": "hrp",
"args": ["mcp-server"]
}
}
}stealth-browser-mcp · 安装
# 克隆并安装
git clone https://github.com/vibheksoni/stealth-browser-mcp.git
cd stealth-browser-mcp
python -m venv venv
# 激活虚拟环境
# Windows:
venv\Scripts\activate
# Mac/Linux:
source venv/bin/activate
pip install -r requirements.txt**Claude Desktop 配置:**
{
"mcpServers": {
"stealth-browser-mcp": {
"command": "/path/to/stealth-browser-mcp/venv/bin/python",
"args": ["/path/to/stealth-browser-mcp/src/server.py"]
}
}
}