MCP Catalogs
首页

everything vs Remote-MCP

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

everything
by modelcontextprotocol
Remote-MCP
by ssut
Stars★ 85,748★ 206
30天用量
综合分7741
官方
分类
开发者工具AI / LLM 工具其它
AI / LLM 工具开发者工具运维基建
实现语言TypeScriptTypeScript
最近提交本月14 个月前

everything · 概述

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

Remote-MCP · 概述

类型安全的远程 MCP 通信解决方案,实现模型上下文的集中管理。

everything · 使用场景

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

Remote-MCP · 使用场景

  • 从单个客户端集中管理多个 MCP 服务器
  • 跨网络远程访问 MCP 工具
  • 为可扩展的 AI 应用程序创建分布式 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

Remote-MCP · 安装

安装

客户端安装

npm install @remote-mcp/client @trpc/client@next zod

服务器安装

npm install @remote-mcp/server

Claude Desktop 配置

添加到您的 Claude Desktop config.json:

{
  "mcpServers": {
    "remote-mcp": {
      "command": "npx",
      "args": ["-y", "@remote-mcp/client"],
      "env": {
        "REMOTE_MCP_URL": "http://localhost:9512",
        "HTTP_HEADER_Authorization": "Bearer <token>"
      }
    }
  }
}
对比内容由 README + GitHub 公开数据自动生成,定期更新。