eion vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
eion by eiondb | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 155 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 45 | 77 |
| 官方 | — | ✓ |
| 分类 | 知识库 / RAGAI / LLM 工具开发者工具 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | Go | TypeScript |
| 最近提交 | 11 个月前 | 本月 |
eion · 概述
Eion 通过 MCP 服务器为多智能体系统提供共享内存存储和知识图谱功能。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
eion · 使用场景
- 具有共享内存和知识的多智能体系统
- 具有持久对话历史的 LLM 应用
- 具有顺序或并发处理的智能体代理
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
eion · 安装
安装
- 克隆仓库并设置环境:
git clone <repo>
cd eion
docker-compose up -d- 设置数据库扩展:
docker exec eion_postgres psql -U eion -d eion -c "CREATE EXTENSION IF NOT EXISTS vector;"
docker exec -i eion_postgres psql -U eion -d eion < database_setup.sql- 安装 Python 依赖:
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt- 构建并运行服务器:
go build -o eion-server ./cmd/eion-server
./eion-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