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 | — | — |
| Score | 47 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsSearch | Developer ToolsAI / LLM ToolsOther |
| Language | JavaScript | TypeScript |
| Last commit | this month | this 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:
claudexAdd MCP Server to Claude Code
claude mcp add --transport stdio claudex -- claudex-mcpOption 2: From Source
git clone https://github.com/kunwar-shah/claudex.git
cd claudex
npm run check:fix
npm run devOpen 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