wisdomforge vs filesystem
并排对比,帮你在这两个 MCP server 之间做选择。
wisdomforge by hadv | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 4 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 33 | 77 |
| 官方 | — | ✓ |
| 分类 | AI / LLM 工具知识库 / RAG开发者工具 | 本地文件系统开发者工具效率工具 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 12 个月前 | 本月 |
wisdomforge · 概述
使用 Qdrant 向量数据库的 MCP 服务器,用于存储和检索领域知识。
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
wisdomforge · 使用场景
- 存储组织最佳实践和经验教训供团队访问
- 在 AI 助手对话中检索相关领域知识
- 捕获和检索专家见解以支持决策
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
wisdomforge · 安装
安装
- 克隆仓库:
git clone https://github.com/hadv/wisdomforge
cd wisdomforge- 安装依赖:
npm install- 根据
.env.example创建.env文件:
cp .env.example .env- 在
.env中配置环境变量:
DATABASE_TYPE=qdrant
COLLECTION_NAME=wisdom_collection
QDRANT_URL=https://your-qdrant-instance.example.com
QDRANT_API_KEY=your_api_key
HTTP_SERVER=true
PORT=3000- 构建项目:
npm run buildClaude Desktop 配置
在 Claude 的设置中添加以下配置:
{
"processes": {
"knowledge_server": {
"command": "/path/to/wisdomforge/run-mcp.sh",
"args": []
}
},
"tools": [
{
"name": "store_knowledge",
"description": "在向量数据库中存储领域特定知识",
"provider": "process",
"process": "knowledge_server"
},
{
"name": "retrieve_knowledge_context",
"description": "从向量数据库检索相关领域知识",
"provider": "process",
"process": "knowledge_server"
}
]
}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 中安装。