MCP Catalogs
Home

mcp-openmemory vs everything

Side-by-side comparison to help you pick between these two MCP servers.

mcp-openmemory
by baryhuang
everything
by modelcontextprotocol
Stars★ 72★ 85,748
30d uses
Score4377
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
Developer ToolsAI / LLM ToolsOther
LanguageJavaScriptTypeScript
Last commit12 mo agothis month

mcp-openmemory · Summary

MCP server enabling Claude to remember conversations and learn over time with SQLite storage.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

mcp-openmemory · Use cases

  • Personalized AI assistants that remember user preferences and conversation history
  • Continuous learning applications that build context over multiple sessions
  • Project-specific memory management for different work contexts

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-openmemory · Install

Installation

  1. Install Node.js if not already installed
  2. Add to Claude Desktop configuration:
{
  "mcpServers": {
    "mcp-openmemory": {
      "command": "npx",
      "args": [
        "@peakmojo/mcp-openmemory@latest"
      ],
      "env": {
        "MEMORY_DB_PATH": "/path/to/your/persistent/memory.sqlite"
      }
    }
  }
}
  1. Restart Claude Desktop

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.