aura vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
aura by mezmo | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 63 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 46 | 77 |
| 官方 | — | ✓ |
| 分类 | AI / LLM 工具开发者工具效率工具 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | Rust | TypeScript |
| 最近提交 | 本月 | 本月 |
aura · 概述
Aura 是一个生产就绪的 AI 框架,集成了 MCP 工具、RAG 管道和 OpenAI 兼容 API。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
aura · 使用场景
- 构建具有专业化工作智能体的多智能体 AI 系统
- 创建具有 MCP 工具集成生产就绪的聊天应用
- 为知识增强型 AI 助手实现 RAG 管道
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 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-servereverything · 安装
NPX(推荐)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}Windows 用户请使用 cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}全局安装
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything