MCP Catalogs
Home

remote-mcp-server vs everything

Side-by-side comparison to help you pick between these two MCP servers.

remote-mcp-server
by gleanwork
everything
by modelcontextprotocol
Stars★ 160★ 85,748
30d uses
Score4877
Official
Categories
AI / LLM ToolsDeveloper ToolsKnowledge Graph
Developer ToolsAI / LLM ToolsOther
LanguageTypeScript
Last commit1 mo agothis month

remote-mcp-server · Summary

Enterprise MCP server providing secure access to company knowledge, documents, and expertise.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

remote-mcp-server · Use cases

  • Integrating enterprise search capabilities into AI assistants
  • Providing contextual information to developers in their IDE
  • Discovering subject matter experts within an organization

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

remote-mcp-server · Install

Installation

  1. Obtain your organization's unique Glean MCP server URL from the [Setup Guide](https://docs.glean.com/administration/platform/mcp/enable-mcp-servers)
  1. Configure your MCP client (Claude Desktop, Cursor, etc.) with the server URL:
{
  "mcpServers": {
    "glean": {
      "command": "http",
      "args": ["your-organization-url"]
    }
  }
}
  1. Set up authentication with your organization's SSO system using OAuth 2.0

everything · Install

NPX (recommended)

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

On Windows, use cmd /c:

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

Docker

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

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
Comparison generated from public README + GitHub signals. Last updated automatically.