MCP Catalogs
首页

iron-manus-mcp vs filesystem

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

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

iron-manus-mcp · 概述

MCP服务器,提供8阶段AI工作流编排,通过代理委派和基于待办事项的任务分发实现。

filesystem · 概述

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

iron-manus-mcp · 使用场景

  • 需要任务分解和协调的多代理AI系统
  • 具有安全保护的API集成和发现
  • 基于阶段工作流的复杂项目规划和执行
  • 在隔离环境中的Python计算任务

filesystem · 使用场景

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

iron-manus-mcp · 安装

安装

从源码安装:

git clone https://github.com/dnnyngyen/iron-manus-mcp
cd iron-manus-mcp
npm install
npm run build
npm start

Docker安装:

docker build -t iron-manus-mcp .
docker run -d --name iron-manus-mcp iron-manus-mcp

MCP集成: 添加到Claude Code:

claude mcp add iron-manus-mcp node dist/index.js

或添加到您的MCP配置:

{
  "mcpServers": {
    "iron-manus-mcp": {
      "command": "node",
      "args": ["path/to/iron-manus-mcp/dist/index.js"]
    }
  }
}

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

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