ultimate_mcp_server vs flyto-core
并排对比,帮你在这两个 MCP server 之间做选择。
ultimate_mcp_server by Dicklesworthstone | flyto-core by flytohub | |
|---|---|---|
| Stars | ★ 149 | ★ 270 |
| 30天用量 | — | — |
| 综合分 | 85 | 51 |
| 官方 | — | — |
| 分类 | AI / LLM 工具浏览器自动化本地文件系统 | 浏览器自动化开发者工具网页抓取 |
| 实现语言 | Python | Python |
| 最近提交 | 2 个月前 | 本月 |
ultimate_mcp_server · 概述
一个功能全面的 MCP server,为 AI 提供多种能力:LLM 委托、浏览器自动化、文档处理和认知记忆系统。
flyto-core · 概述
一个AI代理自动化MCP服务器,拥有412个模块、执行追踪、回放功能和内置模板。
ultimate_mcp_server · 使用场景
- 使用 OCR 和结构化数据提取进行复杂的文档处理和分析
- 跨多个网站进行网页自动化和研究,通过浏览器控制
- 通过模型间的智能任务分配实现成本优化的 AI 工作流
flyto-core · 使用场景
- 通过网络抓取和性能监控进行竞争情报收集
- 自动化测试Web应用程序并捕获屏幕截图和性能指标
- 在各种网络来源和API之间进行数据提取和转换工作流
ultimate_mcp_server · 安装
安装
- 克隆仓库:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server- 安装依赖:
pip install -e .- 对于 Claude Desktop 集成,添加到 claude_desktop_config.json:
{
"mcpServers": {
"ultimate-mcp": {
"command": "python",
"args": ["-m", "ultimate_mcp_server"],
"env": {
"PYTHONPATH": "."
}
}
}
}- 运行服务器:
python -m ultimate_mcp_serverflyto-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_server