flyto-core vs next-devtools-mcp
并排对比,帮你在这两个 MCP server 之间做选择。
flyto-core by flytohub | next-devtools-mcp by vercel | |
|---|---|---|
| Stars | ★ 270 | ★ 747 |
| 30天用量 | — | — |
| 综合分 | 51 | 54 |
| 官方 | — | — |
| 分类 | 浏览器自动化开发者工具网页抓取 | 开发者工具浏览器自动化AI / LLM 工具 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 本月 | 2 个月前 |
flyto-core · 概述
一个AI代理自动化MCP服务器,拥有412个模块、执行追踪、回放功能和内置模板。
next-devtools-mcp · 概述
Next.js DevTools MCP 服务器,为 Next.js 应用程序提供开发工具和实用程序。
flyto-core · 使用场景
- 通过网络抓取和性能监控进行竞争情报收集
- 自动化测试Web应用程序并捕获屏幕截图和性能指标
- 在各种网络来源和API之间进行数据提取和转换工作流
next-devtools-mcp · 使用场景
- 诊断 Next.js 应用程序中的运行时错误和问题
- 使用 Playwright 自动化测试 Next.js 应用程序
- 搜索和检索官方 Next.js 文档和指南
- 升级和迁移 Next.js 应用程序到新版本
flyto-core · 安装
安装
pip install flyto-core # 核心引擎 + CLI + MCP服务器
pip install flyto-core[browser] # + 浏览器自动化(Playwright)
playwright install chromium # 一次性浏览器设置MCP配置
添加到您的MCP配置:
{
"mcpServers": {
"flyto-core": {
"command": "python",
"args": ["-m", "core.mcp_server"]
}
}
}或通过Claude CLI:
claude mcp add flyto-core -- python -m core.mcp_servernext-devtools-mcp · 安装
安装
使用 add-mcp CLI:
npx add-mcp next-devtools-mcp@latest手动安装:
{
"mcpServers": {
"next-devtools": {
"command": "npx",
"args": ["-y", "next-devtools-mcp@latest"]
}
}
}