minima vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
minima by dmayboroda | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 1,048 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 52 | 77 |
| 官方 | — | ✓ |
| 分类 | AI / LLM 工具知识库 / RAG效率工具 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 4 个月前 | 本月 |
minima · 概述
Minima 是一个带有 MCP 集成的本地 RAG 系统,可安全地查询本地文档。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
minima · 使用场景
- 对数据隐私要求严格的企业安全文档检索
- 带有本地文档搜索功能的个人知识库
- 通过 MCP 与 Claude Desktop 集成以增强 AI 助手
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
minima · 安装
Docker 安装
- 克隆仓库并导航到它
- 创建 .env 文件,使用 .env.sample 作为模板
- 设置所需变量(LOCAL_FILES_PATH, EMBEDDING_MODEL_ID, EMBEDDING_SIZE)
- 运行:
docker compose -f docker-compose-mcp.yml --env-file .env up --build
Claude Desktop 集成
添加到您的 claude_desktop_config.json:
{
"mcpServers": {
"minima": {
"command": "uv",
"args": [
"--directory",
"/path_to_cloned_minima_project/mcp-server",
"run",
"minima"
]
}
}
}GitHub Copilot 集成
创建或更新 .vscode/mcp.json:
{
"servers": {
"minima": {
"type": "stdio",
"command": "path_to_cloned_minima_project/run_in_copilot.sh",
"args": [
"path_to_cloned_minima_project"
]
}
}
}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-everything