MCP Catalogs
首页

everything vs mcp-api-gateway

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

everything
by modelcontextprotocol
mcp-api-gateway
by rflpazini
Stars★ 85,748★ 40
30天用量
综合分7745
官方
分类
开发者工具AI / LLM 工具其它
开发者工具api-integrationAI / LLM 工具
实现语言TypeScriptJavaScript
最近提交本月2 个月前

everything · 概述

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

mcp-api-gateway · 概述

通用MCP服务器,可将任何带Swagger/OpenAPI规范的API通过Docker转换为Claude Desktop工具。

everything · 使用场景

  • 测试 MCP 客户端实现是否支持所有协议功能
  • 通过参考服务器学习 MCP 协议能力
  • 验证客户端对不同传输方式的兼容性

mcp-api-gateway · 使用场景

  • 将企业API集成到Claude Desktop,无需自定义工具开发
  • 使Claude能够在单个会话中与多个API服务交互
  • 通过Claude中的自然语言提示自动化API交互

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

mcp-api-gateway · 安装

使用Docker MCP工具包(推荐)

  1. 安装Docker Desktop
  2. 从Docker MCP工具包获取MCP服务器
  3. 添加到你的claude_desktop_config.json中:
{
  "mcpServers": {
    "my-api": {
      "command": "docker",
      "args": [
        "run", "--rm", "-i", "--pull", "always",
        "-e", "API_1_NAME=my-api",
        "-e", "API_1_SWAGGER_URL=https://api.example.com/swagger.json",
        "-e", "API_1_BASE_URL=https://api.example.com/v1",
        "-e", "API_1_HEADER_AUTHORIZATION=Bearer YOUR_TOKEN",
        "rflpazini/mcp-api-gateway:latest"
      ]
    }
  }
}

使用npx

API_1_NAME=my-api \
API_1_SWAGGER_URL=https://api.example.com/swagger.json \
API_1_BASE_URL=https://api.example.com/v1 \
npx mcp-api-gateway
对比内容由 README + GitHub 公开数据自动生成,定期更新。