httprunner vs next-devtools-mcp
并排对比,帮你在这两个 MCP server 之间做选择。
httprunner by httprunner | next-devtools-mcp by vercel | |
|---|---|---|
| Stars | ★ 4,277 | ★ 747 |
| 30天用量 | — | — |
| 综合分 | 55 | 54 |
| 官方 | — | — |
| 分类 | 浏览器自动化开发者工具testing | 开发者工具浏览器自动化AI / LLM 工具 |
| 实现语言 | Go | TypeScript |
| 最近提交 | 5 个月前 | 2 个月前 |
httprunner · 概述
HttpRunner 是一款全栈测试框架,包含用于 UI 自动化的 MCP 服务器功能。
next-devtools-mcp · 概述
Next.js DevTools MCP 服务器,为 Next.js 应用程序提供开发工具和实用程序。
httprunner · 使用场景
- Android 和 iOS 移动应用的自动化 UI 测试
- 通过视觉识别实现跨平台浏览器自动化
- API 测试与 UI 自动化在单一框架中的集成
next-devtools-mcp · 使用场景
- 诊断 Next.js 应用程序中的运行时错误和问题
- 使用 Playwright 自动化测试 Next.js 应用程序
- 搜索和检索官方 Next.js 文档和指南
- 升级和迁移 Next.js 应用程序到新版本
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"]
}
}
}next-devtools-mcp · 安装
安装
使用 add-mcp CLI:
npx add-mcp next-devtools-mcp@latest手动安装:
{
"mcpServers": {
"next-devtools": {
"command": "npx",
"args": ["-y", "next-devtools-mcp@latest"]
}
}
}