flyto-core vs xiaohongshu-mcp
并排对比,帮你在这两个 MCP server 之间做选择。
flyto-core by flytohub | xiaohongshu-mcp by xpzouying | |
|---|---|---|
| Stars | ★ 270 | ★ 13,616 |
| 30天用量 | — | — |
| 综合分 | 51 | 59 |
| 官方 | — | — |
| 分类 | 浏览器自动化开发者工具网页抓取 | social-media浏览器自动化网页抓取 |
| 实现语言 | Python | Go |
| 最近提交 | 本月 | 本月 |
flyto-core · 概述
一个AI代理自动化MCP服务器,拥有412个模块、执行追踪、回放功能和内置模板。
xiaohongshu-mcp · 概述
一个用于自动化小红书操作(发布内容、评论、用户互动等)的 MCP 服务器。
flyto-core · 使用场景
- 通过网络抓取和性能监控进行竞争情报收集
- 自动化测试Web应用程序并捕获屏幕截图和性能指标
- 在各种网络来源和API之间进行数据提取和转换工作流
xiaohongshu-mcp · 使用场景
- 自动化内容发布以维持社交媒体存在感
- AI 驱动的企业社交媒体管理
- 通过自动化搜索进行内容研究和分析
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_serverxiaohongshu-mcp · 安装
安装选项
**选项 1:下载预编译二进制文件**
- 从 [GitHub Releases](https://github.com/xpzouying/xiaohongshu-mcp/releases) 下载适用于您平台的二进制文件
- 首先运行登录工具:
chmod +x xiaohongshu-login-darwin-arm64 && ./xiaohongshu-login-darwin-arm64 - 启动 MCP 服务:
chmod +x xiaohongshu-mcp-darwin-arm64 && ./xiaohongshu-mcp-darwin-arm64
**选项 2:使用 Docker(推荐)**
docker pull xpzouying/xiaohongshu-mcp
docker compose up -d```
**选项 3:从源码构建**
1. 克隆仓库
2. 运行 `go run cmd/login/main.go` 进行登录
3. 运行 `go run .` 启动 MCP 服务