MCP Catalogs
首页

filesystem vs clawmaster

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

filesystem
by modelcontextprotocol
clawmaster
by openmaster-ai
Stars★ 85,748★ 20
30天用量
综合分7742
官方
分类
本地文件系统开发者工具效率工具
开发者工具效率工具AI / LLM 工具
实现语言TypeScriptTypeScript
最近提交本月本月

filesystem · 概述

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

clawmaster · 概述

用于管理 OpenClaw 的综合性 MCP 服务器平台,提供 Web 控制台、桌面应用和 MCP 服务器集成。

filesystem · 使用场景

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

clawmaster · 使用场景

  • 通过集中式 Web 界面管理团队或家庭的 OpenClaw 配置
  • 使用 PowerMem 集成设置内存支持的数字助理
  • 监控和观测 OpenClaw 运行时性能和成本

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

clawmaster · 安装

安装

CLI + Web 控制台(推荐)

npm i -g clawmaster
clawmaster                   # 启动 Web 控制台

打开 http://localhost:16223 — 设置向导将引导您完成 OpenClaw 引擎检测和 LLM 提供商配置。

clawmaster serve --daemon    # 在后台运行
clawmaster stop              # 停止服务
clawmaster doctor            # 验证您的环境

桌面应用(Beta)

从 [GitHub Releases](https://github.com/openmaster-ai/clawmaster/releases) 下载适用于您平台的安装程序

从源代码安装

git clone https://github.com/openmaster-ai/clawmaster.git
cd clawmaster
npm install
npm run dev:web              # Web 控制台 + 后端
npm run tauri:dev            # 桌面应用

需要 Node.js 20+。

对比内容由 README + GitHub 公开数据自动生成,定期更新。