MCP Catalogs
首页

agent-inbox vs filesystem

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

agent-inbox
by gsd-build
filesystem
by modelcontextprotocol
Stars★ 42★ 85,748
30天用量
综合分4577
官方
分类
沟通协作开发者工具AI / LLM 工具
本地文件系统开发者工具效率工具
实现语言JavaScriptTypeScript
最近提交1 个月前本月

agent-inbox · 概述

为AI代理提供临时邮箱的MCP服务器,可自动处理邮件验证和身份验证流程。

filesystem · 概述

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

agent-inbox · 使用场景

  • 自动注册需要邮件验证的服务账户
  • 在开发环境中测试基于邮件的身份验证流程
  • AI代理在没有人工干预的情况下测试注册工作流程

filesystem · 使用场景

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

agent-inbox · 安装

安装

npx gsd-agent-inbox

交互式安装程序会自动检测您的 AI 编码代理(Claude Code、Codex CLI、Cursor、Gemini CLI、Windsurf)并配置 MCP 服务器。

Claude Desktop 手动设置

添加到 ~/.claude/settings.json

{
  "mcpServers": {
    "agent-inbox": {
      "command": "npx",
      "args": ["-y", "gsd-agent-inbox"]
    }
  }
}

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 公开数据自动生成,定期更新。