everything vs remindb
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | remindb by radimsem | |
|---|---|---|
| Stars | ★ 85,748 | ★ 93 |
| 30d uses | — | — |
| Score | 77 | 49 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | AI / LLM ToolsKnowledge GraphDeveloper Tools |
| Language | TypeScript | Go |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
remindb · Summary
Remindb is an agentic memory database that cuts session tokens by 75–99% using a portable SQLite file with MCP tool integration.
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
remindb · Use cases
- Long-term memory for AI coding assistants to avoid re-reading unchanged files
- Knowledge management system with temperature-based relevance tracking
- Collaborative environment sharing memory databases across multiple agents
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-everythingremindb · Install
Installation
**One-line install (Linux/macOS):**
curl -fsSL https://raw.githubusercontent.com/radimsem/remindb/main/install.sh | bash**Windows (PowerShell):**
iwr -useb https://raw.githubusercontent.com/radimsem/remindb/main/install.ps1 | iex**From source (Go 1.26+):**
git clone https://github.com/radimsem/remindb.git
cd remindb
go build -o ~/.local/bin/remindb ./cmd/remindb**MCP Integration (Claude Desktop):** Add to claude_desktop_config.json:
{
"mcpServers": {
"remindb": {
"command": "remindb",
"args": ["serve"]
}
}
}