aura vs filesystem
并排对比,帮你在这两个 MCP server 之间做选择。
aura by mezmo | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 63 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 46 | 77 |
| 官方 | — | ✓ |
| 分类 | AI / LLM 工具开发者工具效率工具 | 本地文件系统开发者工具效率工具 |
| 实现语言 | Rust | TypeScript |
| 最近提交 | 本月 | 本月 |
aura · 概述
Aura 是一个生产就绪的 AI 框架,集成了 MCP 工具、RAG 管道和 OpenAI 兼容 API。
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
aura · 使用场景
- 构建具有专业化工作智能体的多智能体 AI 系统
- 创建具有 MCP 工具集成生产就绪的聊天应用
- 为知识增强型 AI 助手实现 RAG 管道
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
aura · 安装
安装步骤
- 安装 Rust:
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh- 克隆并配置:
git clone https://github.com/mezmo/aura
cd aura
cp examples/reference.toml config.toml- 设置所需的环境变量:
export OPENAI_API_KEY="your-api-key"- 构建:
cargo build --release- 运行 Web 服务器:
cargo run --bin aura-web-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 中安装。