MCP Catalogs
首页

filesystem vs remindb

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

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

filesystem · 概述

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

remindb · 概述

Remindb 是一个代理记忆数据库,通过便携式 SQLite 文件与 MCP 工具集成,可减少 75-99% 的会话令牌。

filesystem · 使用场景

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

remindb · 使用场景

  • 为 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 中安装。

remindb · 安装

安装

**一键安装 (Linux/macOS):**

curl -fsSL https://raw.githubusercontent.com/radimsem/remindb/main/install.sh | bash

**Windows (PowerShell):**

iwr -useb https://raw.githubusercontent.com/radimsem/remindb/main/install.ps1 | iex

**从源码编译 (Go 1.26+):**

git clone https://github.com/radimsem/remindb.git
cd remindb
go build -o ~/.local/bin/remindb ./cmd/remindb

**MCP 集成 (Claude Desktop):** 添加到 claude_desktop_config.json:

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