MCP Catalogs
首页

filesystem vs vestige

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

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

filesystem · 概述

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

vestige · 概述

为AI代理提供的认知记忆系统,采用FSRS-6间隔重复技术,包含29个大脑模块和3D可视化仪表盘。

filesystem · 使用场景

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

vestige · 使用场景

  • 为AI助手提供跨会话的持久记忆
  • 为自主代理构建复杂的认知架构
  • 在IDE和开发工具中创建增强记忆的工作流程

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

vestige · 安装

安装

快速开始

  1. 从[GitHub releases](https://github.com/samvallad33/vestige/releases/latest)下载适用于您平台的二进制文件
  2. 使其可执行:chmod +x vestige
  3. 运行它:./vestige

与Claude Desktop集成

将以下内容添加到您的claude_desktop_config.json中:

{
  "mcpServers": {
    "vestige": {
      "command": "您的/vestige路径",
      "args": []
    }
  }
}

包管理器

  • Cargo:cargo install vestige
  • Homebrew:brew install vestige
对比内容由 README + GitHub 公开数据自动生成,定期更新。