memento-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
memento-mcp by gannonh | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 418 | ★ 85,748 |
| 30d uses | — | — |
| Score | 49 | 77 |
| Official | — | ✓ |
| Categories | Knowledge GraphAI / LLM ToolsDeveloper Tools | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 7 mo ago | this month |
memento-mcp · Summary
Knowledge graph memory system with semantic retrieval and temporal awareness for LLMs.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
memento-mcp · Use cases
- Building persistent memory for AI assistants to remember user preferences and context
- Creating knowledge bases that evolve over time with confidence tracking
- Implementing semantic search capabilities for LLM applications
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
memento-mcp · Install
Installation
Prerequisites
- Neo4j 5.13+
Setup Options
Neo4j Desktop Setup (Recommended)
- Download and install Neo4j Desktop
- Create a new project
- Add a new database
- Set password to
memento_password - Start the database
Docker Setup
docker-compose up -d neo4jMCP Configuration
Add to Claude Desktop config:
{
"mcpServers": {
"memento": {
"command": "npx",
"args": ["-y", "@gannonh/memento-mcp"]
}
}
}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