TrueMemory vs everything
Side-by-side comparison to help you pick between these two MCP servers.
TrueMemory by buildingjoshbetter | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 77 | ★ 85,748 |
| 30d uses | — | — |
| Score | 48 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | this month | this month |
TrueMemory · Summary
A high-performance memory system for AI agents that runs locally on SQLite with MCP server integration.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
TrueMemory · Use cases
- Enhancing AI assistants with persistent memory across conversations
- Personalizing AI interactions based on user preferences and history
- Creating long-context AI applications that remember user details
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
TrueMemory · Install
Installation
**Quick Install (Recommended):**
# Mac/Linux
curl -LsSf https://raw.githubusercontent.com/buildingjoshbetter/TrueMemory/main/install.sh | sh
# Windows (PowerShell)
irm https://raw.githubusercontent.com/buildingjoshbetter/TrueMemory/main/install.ps1 | iex**Python Library (for developers):**
pip install truememory**Claude Desktop Integration:** After installation, add to your Claude Desktop config:
{
"mcpServers": {
"truememory": {
"command": "uv",
"args": ["run", "truememory", "serve"]
}
}
}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