MCP Catalogs
Home

memcp vs everything

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

memcp
by maydali28
everything
by modelcontextprotocol
Stars★ 18★ 85,748
30d uses
Score4577
Official
Categories
AI / LLM ToolsKnowledge GraphDeveloper Tools
Developer ToolsAI / LLM ToolsOther
LanguagePythonTypeScript
Last commit1 mo agothis month

memcp · Summary

A persistent memory MCP server for Claude Code that implements the Recursive Language Model framework to store knowledge across sessions.

everything · Summary

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

memcp · Use cases

  • Long-term project development where knowledge needs to persist across sessions
  • Complex analysis of large documents that exceed context window limits
  • Multi-session workflows requiring retention of decisions, findings, and preferences

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

memcp · Install

Install MemCP using pip:

pip install memcp

For interactive installation:

bash scripts/install.sh

To use with Claude Code, register the MCP server in your Claude Desktop configuration:

{
  "mcpServers": {
    "memcp": {
      "command": "python",
      "args": ["-m", "memcp.server"],
      "env": {}
    }
  }
}

Optional dependencies for enhanced capabilities:

pip install memcp[ner]  # For spaCy NER
pip install memcp[vector]  # For semantic search with embeddings

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.