everything vs mcp-memory-libsql
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | mcp-memory-libsql by spences10 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 84 |
| 30d uses | — | — |
| Score | 77 | 46 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | AI / LLM ToolsKnowledge GraphDatabase |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-memory-libsql · Summary
High-performance persistent memory system for MCP with vector search and knowledge graph capabilities.
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-memory-libsql · Use cases
- Building AI agents with persistent memory and knowledge graphs
- Implementing efficient semantic search and retrieval systems
- Creating context-optimized memory storage for LLM applications
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-everythingmcp-memory-libsql · Install
Installation
- Install the server package:
npm install -g mcp-memory-libsql- Configure in your MCP client. For Claude Desktop:
{
"mcpServers": {
"mcp-memory-libsql": {
"command": "npx",
"args": ["-y", "mcp-memory-libsql"],
"env": {
"LIBSQL_URL": "file:/path/to/your/database.db"
}
}
}
}- Set the LIBSQL_URL environment variable to specify your database location (default: file:/memory-tool.db)