everything vs remembrallmcp
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | remembrallmcp by roboticforce | |
|---|---|---|
| Stars | ★ 85,748 | ★ 18 |
| 30d uses | — | — |
| Score | 77 | 43 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsKnowledge Graph |
| Language | TypeScript | Rust |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
remembrallmcp · Summary
MCP server providing persistent memory and code dependency graph for AI agents using Rust and Postgres.
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
remembrallmcp · Use cases
- Enhancing AI coding agents with persistent memory of past decisions and patterns
- Quickly analyzing code dependencies and impact changes before making modifications
- Ingesting project documentation and GitHub PRs to bootstrap agent knowledge
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-everythingremembrallmcp · Install
Installation
Option 1: Docker Compose (easiest)
git clone https://github.com/cdnsteve/remembrallmcp.git
cd remembrallmcp
# Start Postgres + initialize schema + download embedding model
docker compose up -d
# Run the MCP server
docker compose run --rm remembrallOption 2: Prebuilt Binary
# macOS (Apple Silicon)
curl -fsSL https://github.com/cdnsteve/remembrallmcp/releases/latest/download/remembrall-aarch64-apple-darwin.tar.gz | tar xz
sudo mv remembrall /usr/local/bin/
# Initialize
remembrall initClaude Desktop Configuration
Add to your Claude Desktop config:
{
"mcpServers": {
"remembrall": {
"command": "remembrall"
}
}
}