MCP Catalogs
Home

hyper-mcp vs everything

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

hyper-mcp
by hyper-mcp-rs
everything
by modelcontextprotocol
Stars★ 871★ 85,748
30d uses
Score5477
Official
Categories
Developer ToolsAI / LLM ToolsSecurity
Developer ToolsAI / LLM ToolsOther
LanguageRustTypeScript
Last committhis monththis month

hyper-mcp · Summary

A fast, secure MCP server with WebAssembly plugin support for extending AI capabilities.

everything · Summary

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

hyper-mcp · Use cases

  • Extending Claude Desktop or Cursor IDE with custom AI tools
  • Building secure, sandboxed AI tools for enterprise applications
  • Creating portable AI capabilities that can run on edge devices or IoT

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

hyper-mcp · Install

Installation

Prerequisites

  • **cosign** — required for loading plugins from OCI registries

Option 1: Pre-built Binaries

Download from [GitHub Releases](https://github.com/hyper-mcp-rs/hyper-mcp/releases):

  • macOS: hyper-mcp-aarch64-apple-darwin.tar.gz
  • Linux: hyper-mcp-aarch64-unknown-linux-gnu.tar.gz or hyper-mcp-x86_64-unknown-linux-gnu.tar.gz
  • Windows: hyper-mcp-x86_64-pc-windows-msvc.zip

Option 2: Cargo

cargo install hyper-mcp

Claude Desktop Configuration

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "hyper-mcp": {
      "command": "hyper-mcp"
    }
  }
}

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.