everything vs NornicDB
并排对比,帮你在这两个 MCP server 之间做选择。
everything by modelcontextprotocol | NornicDB by orneryd | |
|---|---|---|
| Stars | ★ 85,748 | ★ 734 |
| 30天用量 | — | — |
| 综合分 | 77 | 52 |
| 官方 | ✓ | — |
| 分类 | 开发者工具AI / LLM 工具其它 | 数据库知识库 / RAGAI / LLM 工具 |
| 实现语言 | TypeScript | Go |
| 最近提交 | 本月 | 本月 |
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
NornicDB · 概述
NornicDB 是一个支持原生 MCP 服务器的分布式图+向量数据库,专为 AI 应用设计。
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
NornicDB · 使用场景
- 代理内存和图 RAG 系统
- 具有时间版本的知识图谱
- 需要混合图和向量操作的 AI 应用
everything · 安装
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-everythingNornicDB · 安装
Docker 安装
# Apple Silicon
docker run -d --name nornicdb -p 7474:7474 -p 7687:7687 -v nornicdb-data:/data timothyswt/nornicdb-arm64-metal-bge:latest
# AMD64 / 仅 CPU
docker run -d --name nornicdb -p 7474:7474 -p 7687:7687 -v nornicdb-data:/data timothyswt/nornicdb-amd64-cpu-bge:latest从源码安装
git clone https://github.com/orneryd/NornicDB.git
cd NornicDB
go build -o nornicdb ./cmd/nornicdb
./nornicdb serveClaude Desktop 配置
要在 Claude Desktop 中使用 MCP 服务器,请添加到您的 claude_desktop_config.json 文件中:
{
"mcpServers": {
"nornicdb": {
"command": "nornicdb",
"args": ["mcp"]
}
}
}