AgentUp vs filesystem
并排对比,帮你在这两个 MCP server 之间做选择。
AgentUp by always-further | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 116 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 47 | 77 |
| 官方 | — | ✓ |
| 分类 | AI / LLM 工具开发者工具运维基建 | 本地文件系统开发者工具效率工具 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 1 个月前 | 本月 |
AgentUp · 概述
AgentUp 是基于 Python 的 AI 框架,内置 MCP 支持,提供安全、可移植的代理部署。
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
AgentUp · 使用场景
- 具有安全需求且需要确定性行为的企业级 AI 应用
- 需要安全代理间通信和编排的多代理系统
- 需要在不同环境中共享和重现代理环境的开发团队
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
AgentUp · 安装
安装
使用 pip 安装 AgentUp:
pip install agentup创建您的第一个代理
agentup init启动代理
agentup runMCP 配置
AgentUp 内置对模型上下文协议 (MCP) 的支持,完全支持 STDIO、SSE 和可流式 HTTP。通过在代理设置中添加配置来配置 MCP,类似于为 Claude、Cursor 或 VSCode 配置的方式。
filesystem · 安装
安装
使用 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 中安装。