MCP Catalogs
首页

mcp-gateway vs everything

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

mcp-gateway
by lightconetech
everything
by modelcontextprotocol
Stars★ 151★ 85,748
30天用量
综合分4277
官方
分类
开发者工具AI / LLM 工具其它
开发者工具AI / LLM 工具其它
实现语言JavaScriptTypeScript
最近提交18 个月前本月

mcp-gateway · 概述

一个桥接stdio Claude Desktop与HTTP/SSE MCP服务器的网关服务。

everything · 概述

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

mcp-gateway · 使用场景

  • 使Claude Desktop能够连接基于HTTP/SSE的MCP服务器
  • 通过Claude Desktop访问MCP Hub服务
  • 弥合MCP使用不同传输方法发展时的协议差距

everything · 使用场景

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

mcp-gateway · 安装

npm install -g @mcphub/gateway

通过更新config.json配置Claude Desktop:

{
  "mcpServers": {
    "server-name": {
      "command": "node",
      "args": ["/path/to/@mcphub/gateway/dist/src/mcphub-gateway.js"]
    }
  }
}

通过环境变量设置目标MCP服务器URL:export MCP_SERVER_URL=https://your-mcp-server.com/api/mcp

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