MCP Catalogs
Home

everything vs YourMemory

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

everything
by modelcontextprotocol
YourMemory
by sachitrafa
Stars★ 85,748★ 220
30d uses
Score7751
Official
Categories
Developer ToolsAI / LLM ToolsOther
AI / LLM ToolsDeveloper ToolsProductivity
LanguageTypeScriptPython
Last committhis monththis month

everything · Summary

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

YourMemory · Summary

Agentic AI memory system with Ebbinghaus forgetting curve decay, improving recall over competitors.

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

YourMemory · Use cases

  • AI assistant with persistent memory across sessions
  • Personalized AI that remembers user preferences and context
  • Knowledge management for development teams
  • Research AI that maintains context across long-term projects

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

YourMemory · Install

# Install YourMemory
pip install yourmemory

# Get your config path
yourmemory-path

# Add to Claude Desktop config
{
  "mcpServers": {
    "yourmemory": {
      "command": "yourmemory"
    }
  }
}

First start automatically initializes the database and downloads required models.

Comparison generated from public README + GitHub signals. Last updated automatically.