MCP Catalogs
Home

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
Score4977
Official
Categories
Developer ToolsAI / LLM ToolsProductivity
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit1 mo agothis 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-keeper

Claude Desktop App Configuration

  1. Open Claude Desktop settings
  2. Navigate to "Developer" → "Model Context Protocol"
  3. Click "Add MCP Server"
  4. 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
Comparison generated from public README + GitHub signals. Last updated automatically.