mcp-openmemory vs everything
Side-by-side comparison to help you pick between these two MCP servers.
mcp-openmemory by baryhuang | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 72 | ★ 85,748 |
| 30d uses | — | — |
| Score | 43 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | JavaScript | TypeScript |
| Last commit | 12 mo ago | this month |
mcp-openmemory · Summary
MCP server enabling Claude to remember conversations and learn over time with SQLite storage.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-openmemory · Use cases
- Personalized AI assistants that remember user preferences and conversation history
- Continuous learning applications that build context over multiple sessions
- Project-specific memory management for different work contexts
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
mcp-openmemory · Install
Installation
- Install Node.js if not already installed
- Add to Claude Desktop configuration:
{
"mcpServers": {
"mcp-openmemory": {
"command": "npx",
"args": [
"@peakmojo/mcp-openmemory@latest"
],
"env": {
"MEMORY_DB_PATH": "/path/to/your/persistent/memory.sqlite"
}
}
}
}- Restart Claude Desktop
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