next-devtools-mcp vs stealth-browser-mcp
并排对比,帮你在这两个 MCP server 之间做选择。
next-devtools-mcp by vercel | stealth-browser-mcp by vibheksoni | |
|---|---|---|
| Stars | ★ 747 | ★ 643 |
| 30天用量 | — | — |
| 综合分 | 54 | 54 |
| 官方 | — | — |
| 分类 | 开发者工具浏览器自动化AI / LLM 工具 | 浏览器自动化网页抓取开发者工具 |
| 实现语言 | TypeScript | Python |
| 最近提交 | 2 个月前 | 本月 |
next-devtools-mcp · 概述
Next.js DevTools MCP 服务器,为 Next.js 应用程序提供开发工具和实用程序。
stealth-browser-mcp · 概述
Stealth Browser MCP 提供反检测浏览器自动化功能,专为 MCP 兼容的 AI 代理设计。
next-devtools-mcp · 使用场景
- 诊断 Next.js 应用程序中的运行时错误和问题
- 使用 Playwright 自动化测试 Next.js 应用程序
- 搜索和检索官方 Next.js 文档和指南
- 升级和迁移 Next.js 应用程序到新版本
stealth-browser-mcp · 使用场景
- 在带有反机器人措施的受保护网站上自动化网页抓取
- 通过 AI 聊天命令创建网站 UI 克隆
- 实时拦截和修改网络流量
next-devtools-mcp · 安装
安装
使用 add-mcp CLI:
npx add-mcp next-devtools-mcp@latest手动安装:
{
"mcpServers": {
"next-devtools": {
"command": "npx",
"args": ["-y", "next-devtools-mcp@latest"]
}
}
}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"]
}
}
}