llmwiki vs filesystem
并排对比,帮你在这两个 MCP server 之间做选择。
llmwiki by lucasastorian | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 908 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 52 | 77 |
| 官方 | — | ✓ |
| 分类 | AI / LLM 工具知识库 / RAG效率工具 | 本地文件系统开发者工具效率工具 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 本月 | 本月 |
llmwiki · 概述
LLM Wiki 是一个 MCP 服务器,可索引本地文档并让 Claude 构建和维护知识维基。
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
llmwiki · 使用场景
- 学术研究管理和文献综述综合
- 个人知识库构建和概念映射
- 项目仓库的自动化文档生成
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
llmwiki · 安装
# 克隆并设置
git clone https://github.com/lucasastorian/llmwiki.git
cd llmwiki
cd api && python -m venv .venv && source .venv/bin/activate && pip install -r requirements.txt
cd .. && cd web && npm install && cd ..
# 初始化工作空间
./llmwiki init ~/research
# 启动服务器
./llmwiki serve ~/research
# 生成 Claude Desktop 配置
./llmwiki mcp-config ~/research将以下内容添加到您的 claude_desktop_config.json 中:
{
"mcpServers": {
"llmwiki-research": {
"command": "python",
"args": ["-m", "llmwiki", "mcp", "~/research"]
}
}
}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 中安装。