MCP Catalogs
Home

memento-mcp vs everything

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

memento-mcp
by gannonh
everything
by modelcontextprotocol
Stars★ 418★ 85,748
30d uses
Score4977
Official
Categories
Knowledge GraphAI / LLM ToolsDeveloper Tools
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit7 mo agothis month

memento-mcp · Summary

Knowledge graph memory system with semantic retrieval and temporal awareness for LLMs.

everything · Summary

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

memento-mcp · Use cases

  • Building persistent memory for AI assistants to remember user preferences and context
  • Creating knowledge bases that evolve over time with confidence tracking
  • Implementing semantic search capabilities for LLM applications

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

memento-mcp · Install

Installation

Prerequisites

  • Neo4j 5.13+

Setup Options

Neo4j Desktop Setup (Recommended)

  1. Download and install Neo4j Desktop
  2. Create a new project
  3. Add a new database
  4. Set password to memento_password
  5. Start the database

Docker Setup

docker-compose up -d neo4j

MCP Configuration

Add to Claude Desktop config:

{
  "mcpServers": {
    "memento": {
      "command": "npx",
      "args": ["-y", "@gannonh/memento-mcp"]
    }
  }
}

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.