MCP Catalogs
首页

filesystem vs total-agent-memory

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

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

filesystem · 概述

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

total-agent-memory · 概述

为AI编程代理提供持久化记忆层,包含知识图谱、嵌入和3D可视化功能。

filesystem · 使用场景

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

total-agent-memory · 使用场景

  • 跨编码会话记住架构决策
  • 检索类似问题的先前解决方案
  • 维护关于错误修复和故障排除步骤的上下文

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

total-agent-memory · 安装

安装

前置要求

  • Python 3.8+
  • SQLite (已包含)
  • 可选:Ollama用于高级功能

基本安装

pip install total-agent-memory

Claude Desktop集成

添加到Claude Desktop的config.json中:

{
  "mcpServers": {
    "total-agent-memory": {
      "command": "python",
      "args": ["-m", "total_agent_memory.server"],
      "env": {}
    }
  }
}

快速开始

total-agent-memory init
total-agent-memory serve
对比内容由 README + GitHub 公开数据自动生成,定期更新。