filesystem vs claude-historian-mcp
并排对比,帮你在这两个 MCP server 之间做选择。
filesystem by modelcontextprotocol | claude-historian-mcp by Vvkmnn | |
|---|---|---|
| Stars | ★ 85,748 | ★ 179 |
| 30天用量 | — | — |
| 综合分 | 77 | 50 |
| 官方 | ✓ | — |
| 分类 | 本地文件系统开发者工具效率工具 | 开发者工具AI / LLM 工具搜索 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 本月 | 本月 |
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
claude-historian-mcp · 概述
一个 MCP 服务器,让 Claude Code 能够搜索和检索对话历史,具有强大的搜索功能,无需依赖。
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
claude-historian-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 中安装。
claude-historian-mcp · 安装
安装
**从命令行安装:**
claude mcp add claude-historian-mcp -- npx claude-historian-mcp**从 Claude 内部安装**(需要重新启动):
Add this to our global mcp config: npx claude-historian-mcp
Install this mcp: https://github.com/Vvkmnn/claude-historian-mcp**对于手动配置的 MCP 客户端**(Cursor、Windsurf 等):
{
"mcpServers": {
"claude-historian-mcp": {
"command": "npx",
"args": ["claude-historian-mcp"],
"env": {}
}
}
}