MCP Catalogs
Home

everything vs ClawMem

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

everything
by modelcontextprotocol
ClawMem
by yoloshii
Stars★ 85,748★ 168
30d uses
Score7750
Official
Categories
Developer ToolsAI / LLM ToolsOther
AI / LLM ToolsDeveloper ToolsKnowledge Graph
LanguageTypeScriptTypeScript
Last committhis monththis month

everything · Summary

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

ClawMem · Summary

On-device memory layer for AI agents with MCP server integration and hybrid RAG search.

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

ClawMem · Use cases

  • Enhancing AI coding agents with persistent memory of project decisions and context
  • Creating a unified memory layer across different AI agent platforms (Claude Code, OpenClaw, Hermes)
  • Implementing retrieval-augmented generation for personal notes and documentation

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

ClawMem · Install

Install via npm (recommended)

npm install -g clawmem

Install via Bun

bun add -g clawmem

Setup for Claude Code (MCP integration)

clawmem bootstrap
clawmem setup hooks
clawmem setup mcp

Verify installation

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