MCP Catalogs
首页

remote-mcp-server vs everything

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

remote-mcp-server
by gleanwork
everything
by modelcontextprotocol
Stars★ 160★ 85,748
30天用量
综合分4877
官方
分类
AI / LLM 工具开发者工具知识库 / RAG
开发者工具AI / LLM 工具其它
实现语言TypeScript
最近提交1 个月前本月

remote-mcp-server · 概述

企业级MCP服务器,提供对组织知识、文档和专业技能的安全访问。

everything · 概述

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

remote-mcp-server · 使用场景

  • 将企业搜索功能集成到AI助手中
  • 在IDE中为开发者提供上下文信息
  • 在组织中发现主题专家

everything · 使用场景

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

remote-mcp-server · 安装

安装

  1. 从[安装指南](https://docs.glean.com/administration/platform/mcp/enable-mcp-servers)获取您组织的独特Glean MCP服务器URL
  1. 使用服务器URL配置您的MCP客户端(Claude Desktop、Cursor等):
{
  "mcpServers": {
    "glean": {
      "command": "http",
      "args": ["your-organization-url"]
    }
  }
}
  1. 使用OAuth 2.0设置与您组织SSO系统的身份验证

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