MCP Catalogs
首页

filesystem vs context-engineering

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

filesystem
by modelcontextprotocol
context-engineering
by timothywarner-org
Stars★ 85,748★ 23
30天用量
综合分7745
官方
分类
本地文件系统开发者工具效率工具
AI / LLM 工具知识库 / RAG开发者工具
实现语言TypeScriptPython
最近提交本月1 个月前

filesystem · 概述

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

context-engineering · 概述

生产就绪的 MCP 服务器,通过混合 RAG 和 CoALA 内存层级为 AI 助手实现语义记忆功能。

filesystem · 使用场景

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

context-engineering · 使用场景

  • 构建具有长期记忆能力的 AI 助手
  • 实现语义记忆和混合 RAG 系统
  • 使用 MCP 协议开发上下文感知的 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 中安装。

context-engineering · 安装

安装

前置要求

  • Python 3.13(在 .python-version 中指定)
  • Node.js 20+(用于 Lab 01 和 MCP Inspector)
  • [uv](https://docs.astral.sh/uv/) 包管理器(推荐)
  • Claude Desktop 或 Claude Code

选项 1:Hello MCP 实验室(初学者)

git clone https://github.com/timothywarner-org/context-engineering.git
cd context-engineering/labs/lab-01-hello-mcp/starter
npm install && npm start

选项 2:WARNERCO Schematica(完整应用)

cd src/warnerco/backend
uv sync
uv run uvicorn app.main:app --reload    # HTTP 服务器
uv run warnerco-mcp                      # MCP stdio 服务器

Claude Desktop 配置

{
  "mcpServers": {
    "warnerco": {
      "command": "uv",
      "args": ["run", "warnerco-mcp"],
      "cwd": "C:/github/context-engineering/src/warnerco/backend"
    }
  }
}
对比内容由 README + GitHub 公开数据自动生成,定期更新。