← Back to Plugins
MCP Server MCP

EvolutionDB Long-Term Memory

github By github 👁 1 views ▲ 0 votes

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

Homepage Verified source GitHub

Install

uvx mcp-server-evolutiondb

Configuration Example

{
  "remotes": [],
  "packages": [
    {
      "registryType": "pypi",
      "identifier": "mcp-server-evolutiondb",
      "version": "1.17.0",
      "runtimeHint": "python3",
      "transport": {
        "type": "stdio"
      },
      "environmentVariables": [
        {
          "description": "Hostname where EvolutionDB is reachable on the PostgreSQL wire (port 5433).",
          "format": "string",
          "default": "127.0.0.1",
          "name": "EVOSQL_HOST"
        },
        {
          "description": "EvolutionDB's PostgreSQL-protocol port.",
          "format": "string",
          "default": "5433",
          "name": "EVOSQL_PORT"
        },
        {
          "description": "Database user.",
          "format": "string",
          "default": "admin",
          "name": "EVOSQL_USER"
        },
        {
          "description": "Database password.",
          "format": "string",
          "isSecret": true,
          "default": "admin",
          "name": "EVOSQL_PASSWORD"
        },
        {
          "description": "Database name to use.",
          "format": "string",
          "default": "testdb",
          "name": "EVOSQL_DATABASE"
        },
        {
          "description": "Sticky namespace identifier for every memory Claude writes through this server. Server-side override — the LLM cannot fragment your namespace by inventing other IDs.",
          "isRequired": true,
          "format": "string",
          "default": "default_user",
          "name": "MCP_USER_ID"
        },
        {
          "description": "Prefix for the auto-created MEMORY STORE / ENTITY STORE catalog objects.",
          "format": "string",
          "default": "claude_desktop",
          "name": "MCP_STORE_PREFIX"
        }
      ]
    }
  ]
}
mcp model-context-protocol pypi

Comments

Sign in to leave a comment

Loading comments...