filesystem vs memcord
并排对比,帮你在这两个 MCP server 之间做选择。
filesystem by modelcontextprotocol | memcord by ukkit | |
|---|---|---|
| Stars | ★ 85,748 | ★ 67 |
| 30天用量 | — | — |
| 综合分 | 77 | 47 |
| 官方 | ✓ | — |
| 分类 | 本地文件系统开发者工具效率工具 | AI / LLM 工具效率工具开发者工具 |
| 实现语言 | TypeScript | Python |
| 最近提交 | 本月 | 1 个月前 |
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
memcord · 概述
优先考虑隐私的 MCP 服务器,用于 AI 记忆管理,具有智能摘要和搜索功能。
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
memcord · 使用场景
- 长期项目文档和对话跟踪
- 从 AI 对话构建研究和知识库
- 需要本地存储的隐私敏感场景
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 中安装。
memcord · 安装
快速安装
**macOS / Linux:**
curl -fsSL https://github.com/ukkit/memcord/raw/main/install.sh | bash**Windows (PowerShell):**
irm https://github.com/ukkit/memcord/raw/main/install.ps1 | iexClaude Desktop 配置
安装后,Memcord 将自动配置 Claude Desktop。配置文件将放置在您的 Claude 设置目录中:
{
"mcpServers": {
"memcord": {
"command": "python",
"args": ["-m", "memcord.server"]
}
}
}