everything vs mcp-local-rag
并排对比,帮你在这两个 MCP server 之间做选择。
everything by modelcontextprotocol | mcp-local-rag by shinpr | |
|---|---|---|
| Stars | ★ 85,748 | ★ 260 |
| 30天用量 | — | — |
| 综合分 | 77 | 51 |
| 官方 | ✓ | — |
| 分类 | 开发者工具AI / LLM 工具其它 | 开发者工具AI / LLM 工具搜索 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 本月 | 本月 |
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
mcp-local-rag · 概述
本地优先的 RAG 服务器,通过 MCP 或 CLI 为代码和技术文档提供语义+关键词搜索。
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
mcp-local-rag · 使用场景
- 搜索内部文档和 API 规范进行开发参考
- 使用语义+关键词搜索进行代码库探索,查找特定函数和模式
- 从私人文档集合中分析研究论文和检索知识
- 通过搜索本地文档中的错误代码和解决方案进行技术故障排除
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-everythingmcp-local-rag · 安装
通过 MCP 安装
对于 **Cursor** — 添加到 ~/.cursor/mcp.json:
{
"mcpServers": {
"local-rag": {
"command": "npx",
"args": ["-y", "mcp-local-rag"],
"env": {
"BASE_DIR": "/path/to/your/documents"
}
}
}
}对于 **Claude Code** — 运行此命令:
claude mcp add local-rag --scope user --env BASE_DIR=/path/to/your/documents -- npx -y mcp-local-ragCLI 安装
npx mcp-local-rag ingest ./docs/
npx mcp-local-rag query "authentication API"