filesystem vs remembrallmcp
并排对比,帮你在这两个 MCP server 之间做选择。
filesystem by modelcontextprotocol | remembrallmcp by roboticforce | |
|---|---|---|
| Stars | ★ 85,748 | ★ 18 |
| 30天用量 | — | — |
| 综合分 | 77 | 43 |
| 官方 | ✓ | — |
| 分类 | 本地文件系统开发者工具效率工具 | 开发者工具AI / LLM 工具知识库 / RAG |
| 实现语言 | TypeScript | Rust |
| 最近提交 | 本月 | 本月 |
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
remembrallmcp · 概述
基于 Rust 和 PostgreSQL 的 MCP 服务器,为 AI 代理提供持久化记忆和代码依赖图功能。
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
remembrallmcp · 使用场景
- 为 AI 编码代理增强持久化记忆,保留过往决策和模式
- 快速分析代码依赖和变更影响,在修改前评估风险
- 导入项目文档和 GitHub PR,为代理提供初始知识基础
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 中安装。
remembrallmcp · 安装
安装
选项 1:Docker Compose(最简单)
git clone https://github.com/cdnsteve/remembrallmcp.git
cd remembrallmcp
# 启动 Postgres + 初始化架构 + 下载嵌入模型
docker compose up -d
# 运行 MCP 服务器
docker compose run --rm remembrall选项 2:预构建二进制文件
# macOS (Apple Silicon)
curl -fsSL https://github.com/cdnsteve/remembrallmcp/releases/latest/download/remembrall-aarch64-apple-darwin.tar.gz | tar xz
sudo mv remembrall /usr/local/bin/
# 初始化
remembrall initClaude Desktop 配置
添加到您的 Claude Desktop 配置文件:
{
"mcpServers": {
"remembrall": {
"command": "remembrall"
}
}
}