MCP Catalogs
Home

cuba-memorys vs everything

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

cuba-memorys
by LeandroPG19
everything
by modelcontextprotocol
Stars★ 22★ 85,748
30d uses
Score4577
Official
Categories
Knowledge GraphAI / LLM ToolsDeveloper Tools
Developer ToolsAI / LLM ToolsOther
LanguageRustTypeScript
Last committhis monththis month

cuba-memorys · Summary

A sophisticated MCP server providing AI agents with persistent memory using knowledge graphs, neuroscience-inspired algorithms, and anti-hallucination techniques.

everything · Summary

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

cuba-memorys · Use cases

  • Long-term memory for AI coding assistants that persists across sessions
  • Knowledge management systems with semantic relationships and contradiction detection
  • AI agents requiring context-aware memory and prospective triggers

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

cuba-memorys · Install

Recommended Installation (PyPI)

pip install cuba-memorys

Claude Desktop Configuration

Add to Claude Desktop config:

{
  "mcpServers": {
    "cuba-memorys": {
      "command": "cuba-memorys"
    }
  }
}

Auto-provisioned Setup

No configuration required - the server automatically provisions a PostgreSQL database via Docker on first run. Docker must be installed and running.

Custom PostgreSQL Setup

If you already have PostgreSQL with pgvector:

{
  "mcpServers": {
    "cuba-memorys": {
      "command": "cuba-memorys",
      "env": {
        "DATABASE_URL": "postgresql://user:pass@localhost:5432/brain"
      }
    }
  }
}

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.