MCP Catalogs
首页

filesystem vs codex-mcp-tool

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

filesystem
by modelcontextprotocol
codex-mcp-tool
by x51xxx
Stars★ 85,748★ 21
30天用量
综合分7743
官方
分类
本地文件系统开发者工具效率工具
开发者工具AI / LLM 工具
实现语言TypeScriptTypeScript
最近提交本月1 个月前

filesystem · 概述

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

codex-mcp-tool · 概述

连接Claude/Cursor与Codex CLI的MCP服务器,支持文件分析、多轮对话和本地模型

filesystem · 使用场景

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

codex-mcp-tool · 使用场景

  • 使用文件引用进行代码分析和重构
  • 带有上下文保存的代码多轮对话
  • 本地模型集成用于私有代码分析

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

codex-mcp-tool · 安装

安装

Claude Desktop

claude mcp add codex-cli -- npx -y @trishchuk/codex-mcp-tool

配置

{
  "mcpServers": {
    "codex-cli": {
      "command": "npx",
      "args": ["-y", "@trishchuk/codex-mcp-tool"]
    }
  }
}

**配置位置:**

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
对比内容由 README + GitHub 公开数据自动生成,定期更新。