MCP Catalogs
Home

gopher-mcp vs everything

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

gopher-mcp
by GopherSecurity
everything
by modelcontextprotocol
Stars★ 114★ 85,748
30d uses
Score4777
Official
Categories
Developer ToolsAI / LLM ToolsOps & Infra
Developer ToolsAI / LLM ToolsOther
LanguageC++TypeScript
Last committhis monththis month

gopher-mcp · Summary

A comprehensive C++ SDK for MCP with enterprise features and multi-language bindings.

everything · Summary

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

gopher-mcp · Use cases

  • Building AI-powered applications for embedded systems and IoT devices
  • Creating high-frequency trading and real-time applications with low latency
  • Developing native desktop and mobile applications with MCP capabilities
  • Integrating AI capabilities into game engines and graphics applications

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

gopher-mcp · Install

Installation

Prerequisites

  • C++14 compiler (GCC 8+, Clang 10+, MSVC 2019+)
  • CMake 3.10+
  • libevent 2.1+
  • OpenSSL 1.1+ (optional, for TLS)

Build and Install

# Show all available commands
make help

# Build
make

# Install (auto-prompts for sudo if needed)
make install

# Run tests
make test

Configuration for Claude Desktop

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "gopher-mcp": {
      "command": "path/to/gopher-mcp",
      "args": []
    }
  }
}

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.