MCP Catalogs
首页

filesystem vs superlocalmemory

并排对比,帮你在这两个 MCP server 之间做选择。

filesystem
by modelcontextprotocol
superlocalmemory
by qualixar
Stars★ 85,748★ 150
30天用量
综合分7750
官方
分类
本地文件系统开发者工具效率工具
AI / LLM 工具开发者工具效率工具
实现语言TypeScriptPython
最近提交本月本月

filesystem · 概述

功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。

superlocalmemory · 概述

一款仅限本地的AI记忆系统,通过MCP集成,为AI客户端提供无限记忆功能。

filesystem · 使用场景

  • 使 AI 模型能够读取和写入项目文件进行开发
  • 允许 Claude 或其他 MCP 客户端浏览和分析代码库
  • 为内容生成提供对特定目录的安全沙盒访问

superlocalmemory · 使用场景

  • 为Claude Code、Cursor和Windsurf等AI编程助手增强跨会话持久记忆
  • 构建私密、设备上的无限记忆AI代理,永不将数据发送到云服务
  • 创建需要符合GDPR/EU 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 中安装。

superlocalmemory · 安装

通过npm安装(推荐)

npm install -g superlocalmemory
slm setup     # 选择模式(A/B/C)
slm doctor    # 验证一切正常工作
slm warmup    # 预下载嵌入模型(约500MB,可选)

通过pip安装

pip install superlocalmemory

MCP集成(Claude、Cursor、Windsurf、VS Code等)

{
  "mcpServers": {
    "superlocalmemory": {
      "command": "slm",
      "args": ["mcp"]
    }
  }
}
对比内容由 README + GitHub 公开数据自动生成,定期更新。