MCP Catalogs
首页

filesystem vs remind

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

filesystem
by modelcontextprotocol
remind
by sandst1
Stars★ 85,748★ 78
30天用量
综合分7746
官方
分类
本地文件系统开发者工具效率工具
AI / LLM 工具知识库 / RAG开发者工具
实现语言TypeScriptPython
最近提交本月本月

filesystem · 概述

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

remind · 概述

Remind 是一个 AI 智能体记忆层,提取和保留概念化知识而非简单文本。

filesystem · 使用场景

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

remind · 使用场景

  • 开发团队使用 AI 编码助手管理项目记忆
  • 通过整合和跨会话回忆信息进行研究辅助
  • 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 中安装。

remind · 安装

# 安装包
pip install remind-mcp

# 启动 MCP 服务器
remind-mcp --port 8765

配置 Claude Desktop:

{
  "mcpServers": {
    "remind": {
      "url": "http://127.0.0.1:8765/sse?db=my-project"
    }
  }
}

可选,安装额外功能:

pip install "remind-mcp[postgres]"  # PostgreSQL 支持
pip install "remind-mcp[rerank]"   # 跨编码器重新排序
对比内容由 README + GitHub 公开数据自动生成,定期更新。