MCP Catalogs
首页

filesystem vs AgentCrew

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

filesystem
by modelcontextprotocol
AgentCrew
by saigontechnology
Stars★ 85,748★ 200
30天用量
综合分7749
官方
分类
本地文件系统开发者工具效率工具
AI / LLM 工具开发者工具效率工具
实现语言TypeScriptPython
最近提交本月本月

filesystem · 概述

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

AgentCrew · 概述

AgentCrew 是一个支持 MCP 的 Python 多智能体系统,用于专业化 AI 协作。

filesystem · 使用场景

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

AgentCrew · 使用场景

  • 开发工作流中的代码审查和安全分析
  • 具有专业化智能体角色的研究项目,用于信息收集
  • 通过协调的智能体操作实现自动化任务

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

AgentCrew · 安装

安装

**macOS / Linux**

curl -LsSf https://agentcrew.dev/install.sh | bash

**Windows**

powershell -ExecutionPolicy ByPass -c "irm https://agentcrew.dev/install.ps1 | iex"

**pip (任何平台)**

pip install agentcrew-ai

配置

通过环境变量添加 API 密钥:

export ANTHROPIC_API_KEY="sk-ant-..."

或在 ~/.AgentCrew/config.json 创建配置文件

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