everything vs claude-historian-mcp
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | claude-historian-mcp by Vvkmnn | |
|---|---|---|
| Stars | ★ 85,748 | ★ 179 |
| 30d uses | — | — |
| Score | 77 | 50 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsSearch |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
claude-historian-mcp · Summary
An MCP server that allows Claude Code to search and retrieve conversation history with sophisticated search capabilities and zero dependencies.
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
claude-historian-mcp · Use cases
- Finding past solutions to similar problems encountered in previous conversations
- Debugging by searching historical error patterns and their fixes
- Understanding project evolution through file change history analysis
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-everythingclaude-historian-mcp · Install
Installation
**From shell:**
claude mcp add claude-historian-mcp -- npx claude-historian-mcp**From inside Claude** (restart required):
Add this to our global mcp config: npx claude-historian-mcp
Install this mcp: https://github.com/Vvkmnn/claude-historian-mcp**For manually configurable MCP clients** (Cursor, Windsurf, etc.):
{
"mcpServers": {
"claude-historian-mcp": {
"command": "npx",
"args": ["claude-historian-mcp"],
"env": {}
}
}
}