MCP Catalogs
Home

claudex vs everything

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

claudex
by kunwar-shah
everything
by modelcontextprotocol
Stars★ 88★ 85,748
30d uses
Score4777
Official
Categories
Developer ToolsAI / LLM ToolsSearch
Developer ToolsAI / LLM ToolsOther
LanguageJavaScriptTypeScript
Last committhis monththis month

claudex · Summary

Claudex is an MCP server that provides persistent memory and FTS5 search for Claude Code conversation history with a web UI.

everything · Summary

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

claudex · Use cases

  • Analyze past Claude Code conversations for project insights
  • Search and retrieve specific code solutions across sessions
  • Maintain context continuity between different Claude Code sessions

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

claudex · Install

Installation

Option 1: npm (Recommended)
# Global installation
npm install -g @kunwarshah/claudex

# Then run:
claudex
Add MCP Server to Claude Code
claude mcp add --transport stdio claudex -- claudex-mcp
Option 2: From Source
git clone https://github.com/kunwar-shah/claudex.git
cd claudex
npm run check:fix
npm run dev

Open http://localhost:3000 in your browser.

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.