Skip to content
Cursor

cognitive ai memory for Cursor

io.github.sachitrafa/cognitive-ai-memory

Ebbinghaus-based persistent memory for Claude. Memories decay with time, strengthen on recall.

client:Cursor transport:stdio runtime:oci

Install cognitive ai memory in Cursor

~/.cursor/mcp.json · windows: %USERPROFILE%\.cursor\mcp.json

Held in this page only — never stored, logged, or sent anywhere but back to your screen.

{
  "mcpServers": {
    "cognitive-ai-memory": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/your-memory/cognitive-ai-memory:1.0.2"
      ],
      "env": {
        "DATABASE_URL": "<DATABASE_URL>",
        "OLLAMA_URL": "<OLLAMA_URL>",
        "EXTRACT_MODEL": "<EXTRACT_MODEL>"
      }
    }
  }
}

Use .cursor/mcp.json in a project root instead to scope it to that project. Cursor merges both. Cursor docs

cognitive ai memory in other clients