MCP Catalogs
Home

everything vs mcp-memory

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

everything
by modelcontextprotocol
mcp-memory
by Puliczek
Stars★ 85,748★ 143
30d uses
Score7742
Official
Categories
Developer ToolsAI / LLM ToolsOther
AI / LLM ToolsDeveloper ToolsKnowledge Graph
LanguageTypeScriptHTML
Last committhis month13 mo ago

everything · Summary

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

mcp-memory · Summary

MCP Memory server that enables cross-conversation user memory using vector search technology on Cloudflare infrastructure.

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 · Use cases

  • Personalizing AI assistant responses based on user preferences and history
  • Building long-term contextual awareness for chat applications
  • Creating knowledge bases that persist across multiple sessions

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

mcp-memory · Install

Installation Options

Option 1: One-Click Deploy

Click the deploy button and choose:

  • Dimensions: 1024
  • Metric: cosine

Option 2: Using the Template

  1. Click 'Use this template' button
  2. Clone the new repository
  3. Follow setup instructions

Option 3: Cloudflare CLI

npm create cloudflare@latest --git https://github.com/puliczek/mcp-memory

Setup (Options 2 & 3)

  1. Install dependencies:
npm install
  1. Create Vectorize index:
npx wrangler vectorize create mcp-memory-vectorize --dimensions 1024 --metric cosine
  1. Run locally:
npm run dev
  1. Deploy:
npm run deploy

Claude Desktop Configuration

Add to Claude Desktop config.json:

{
  "mcpServers": {
    "mcp-memory": {
      "command": "npx",
      "args": ["@puliczek/mcp-memory"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.