everything vs superlocalmemory
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | superlocalmemory by qualixar | |
|---|---|---|
| Stars | ★ 85,748 | ★ 150 |
| 30d uses | — | — |
| Score | 77 | 50 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | Python |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
superlocalmemory · Summary
A local-only AI memory system with MCP integration for unlimited memory across AI clients.
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
superlocalmemory · Use cases
- Enhancing AI coding assistants like Claude Code, Cursor, and Windsurf with persistent memory across sessions
- Building private, on-device AI agents with unlimited memory that never send data to cloud services
- Creating research applications requiring GDPR/EU AI Act compliance with no external data transmission
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-everythingsuperlocalmemory · Install
Install via npm (recommended)
npm install -g superlocalmemory
slm setup # Choose mode (A/B/C)
slm doctor # Verify everything is working
slm warmup # Pre-download embedding model (~500MB, optional)Install via pip
pip install superlocalmemoryMCP Integration (Claude, Cursor, Windsurf, VS Code, etc.)
{
"mcpServers": {
"superlocalmemory": {
"command": "slm",
"args": ["mcp"]
}
}
}