flyto-core vs filesystem
并排对比,帮你在这两个 MCP server 之间做选择。
flyto-core by flytohub | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 270 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 51 | 77 |
| 官方 | — | ✓ |
| 分类 | 浏览器自动化开发者工具网页抓取 | 本地文件系统开发者工具效率工具 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 本月 | 本月 |
flyto-core · 概述
一个AI代理自动化MCP服务器,拥有412个模块、执行追踪、回放功能和内置模板。
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
flyto-core · 使用场景
- 通过网络抓取和性能监控进行竞争情报收集
- 自动化测试Web应用程序并捕获屏幕截图和性能指标
- 在各种网络来源和API之间进行数据提取和转换工作流
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
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_serverfilesystem · 安装
安装
使用 NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}使用 Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code 扩展
点击 README 中的安装按钮直接在 VS Code 中安装。