← Index

EvolutionDB Long-Term Memory

io.github.alptekin/evolutiondb-memory·v1.1.2·Memory & RAG
Quality Score
90
/100

Persistent long-term memory for Claude Desktop / Claude Code, backed by EvolutionDB.

§01  Install
Claude Desktop (uvx)
{
  "mcpServers": {
    "evolutiondb-memory": {
      "command": "uvx",
      "args": [
        "mcp-server-evolutiondb"
      ],
      "env": {
        "EVOSQL_HOST": "127.0.0.1",
        "EVOSQL_PORT": "5433",
        "EVOSQL_USER": "admin",
        "EVOSQL_PASSWORD": "<your-evosql_password>",
        "EVOSQL_DATABASE": "testdb",
        "MCP_USER_ID": "default_user",
        "MCP_STORE_PREFIX": "claude_desktop"
      }
    }
  }
}
§02  Environment variables
EVOSQL_HOST

Hostname where EvolutionDB is reachable on the PostgreSQL wire (port 5433).

EVOSQL_PORT

EvolutionDB's PostgreSQL-protocol port.

EVOSQL_USER

Database user.

EVOSQL_PASSWORD
secret

Database password.

EVOSQL_DATABASE

Database name to use.

MCP_USER_ID
required

Sticky namespace identifier for every memory Claude writes through this server. Server-side override — the LLM cannot fragment your namespace by inventing other IDs.

MCP_STORE_PREFIX

Prefix for the auto-created MEMORY STORE / ENTITY STORE catalog objects.

§03  MCP Quality Score  ·  methodology
freshness
25
completeness
15
installability
25
documentation
15
stability
10
§04  Alternatives in Memory & RAG