MCP Catalogs
首页

agent-inbox vs everything

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

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

agent-inbox · 概述

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

everything · 概述

官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。

agent-inbox · 使用场景

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

everything · 使用场景

  • 测试 MCP 客户端实现是否支持所有协议功能
  • 通过参考服务器学习 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"]
    }
  }
}

everything · 安装

NPX(推荐)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Windows 用户请使用 cmd /c

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

全局安装

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
对比内容由 README + GitHub 公开数据自动生成,定期更新。