mcp-memory-keeper vs everything
Side-by-side comparison to help you pick between these two MCP servers.
mcp-memory-keeper by mkreyman | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 122 | ★ 85,748 |
| 30d uses | — | — |
| Score | 49 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 1 mo ago | this month |
mcp-memory-keeper · Summary
MCP server for persistent context management in AI coding assistants that prevents context loss during session resets.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-memory-keeper · Use cases
- Long coding sessions with Claude Code where context preservation is critical
- Complex refactoring projects spanning multiple files and sessions
- Team collaboration where multiple Claude sessions need to share context
- Debugging sessions that span beyond context limits
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-keeper · Install
Installation
Recommended: NPX Installation
claude mcp add memory-keeper npx mcp-memory-keeperClaude Desktop App Configuration
- Open Claude Desktop settings
- Navigate to "Developer" → "Model Context Protocol"
- Click "Add MCP Server"
- Add the following configuration:
{
"mcpServers": {
"memory-keeper": {
"command": "npx",
"args": ["mcp-memory-keeper"]
}
}
}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