everything vs persistent-ai-memory
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | persistent-ai-memory by savantskie | |
|---|---|---|
| Stars | ★ 85,748 | ★ 230 |
| 30d uses | — | — |
| Score | 77 | 49 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | Python |
| Last commit | this month | 1 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
persistent-ai-memory · Summary
Persistent AI memory system for LLMs with MCP server integration, database storage, and conversation tracking.
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
persistent-ai-memory · Use cases
- Enabling long-term memory in OpenWebUI chat assistants through the plugin integration
- Adding conversation history and memory capabilities to MCP-compatible AI assistants
- Implementing personalized AI assistants with persistent memory across sessions
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-everythingpersistent-ai-memory · Install
Installation
# Linux/macOS
pip install git+https://github.com/savantskie/persistent-ai-memory.git
# Windows (same command, just use Command Prompt or PowerShell)
pip install git+https://github.com/savantskie/persistent-ai-memory.gitMCP Server Integration
# Via mcpo
python -m ai_memory_mcp_serverClaude Desktop Configuration
Add to your Claude Desktop config.json:
{
"mcpServers": {
"ai-memory": {
"command": "python",
"args": ["-m", "ai_memory_mcp_server"]
}
}
}