qurio vs filesystem
并排对比,帮你在这两个 MCP server 之间做选择。
qurio by irahardianto | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 16 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 41 | 77 |
| 官方 | — | ✓ |
| 分类 | AI / LLM 工具开发者工具知识库 / RAG | 本地文件系统开发者工具效率工具 |
| 实现语言 | Go | TypeScript |
| 最近提交 | 3 个月前 | 本月 |
qurio · 概述
一个自托管的 RAG 引擎,为 AI 编程助手摄取技术文档和代码仓库,通过 MCP 提供基于事实的上下文,防止 AI 幻觉。
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
qurio · 使用场景
- 为 Cursor、Claude Code 或 Gemini CLI 等 AI 编程助手提供准确、上下文感知的响应
- 为专有文档和内部代码库创建私人知识库
- 通过基于事实的上下文检索减少 AI 幻觉,提高 AI 生产力
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
qurio · 安装
安装
前提条件
- [Docker](https://docs.docker.com/get-docker/) 和 [Docker Compose](https://docs.docker.com/compose/install/)
- [Google Gemini API 密钥](https://aistudio.google.com/app/apikey)(用于嵌入)
步骤
- 克隆仓库:
``bash git clone https://github.com/irahardianto/qurio.git cd qurio ``
- 配置环境:
``bash cp .env.example .env # 将您的 Gemini API 密钥添加到 .env 文件 ``
- 启动系统:
``bash docker-compose up -d ``
- 在浏览器中访问 http://localhost:3000
- 在设置页面添加额外的 API 密钥(Jina AI/Cohere)
MCP 配置
添加到您的 MCP 设置:
{
"mcpServers": {
"qurio": {
"httpUrl": "http://localhost:8081/mcp"
}
}
}filesystem · 安装
安装
使用 NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}使用 Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code 扩展
点击 README 中的安装按钮直接在 VS Code 中安装。