Unified memory across all AI tools
Install with a single command:
curl -sL https://mcps.coah80.com/mcp-memory/install.sh | bash
Or with service installation:
curl -sL https://mcps.coah80.com/mcp-memory/install.sh | bash -s -- --service
For Windows (PowerShell):
Invoke-WebRequest -Uri https://mcps.coah80.com/mcp-memory/install.ps1 -OutFile install.ps1
.\install.ps1
Download the binary for your platform:
Automatically logs completed tasks without manual intervention.
Finds similar memories before starting work to avoid duplication.
Lightweight index for fast lookups without loading full content.
Daily logs of all actions for audit trails and history.
Persistent persona file that works across all AI tools.
Works on Linux, macOS, and Windows with native binaries.
When you complete a task, the AI automatically saves it with /memories/autolog
Before starting work, the AI checks for similar memories with /memories/similar
If similar memories exist, the AI asks if you want to continue that work instead
The index stores only metadata - not full content - saving tokens
# Health check
curl http://localhost:8090/health
# List all memories
curl http://localhost:8090/memories
# Get a memory
curl http://localhost:8090/memories/memory-name
# Create a memory
curl -X POST http://localhost:8090/memories/create \
-H "Content-Type: application/json" \
-d '{"name":"test","description":"A test","type":"user","content":"Hello world"}'
# Search memories
curl "http://localhost:8090/memories/search?q=search+term"
# Find similar memories
curl "http://localhost:8090/memories/similar?q=project+name&threshold=0.3"
# Auto-log task completion
curl -X POST http://localhost:8090/memories/autolog \
-H "Content-Type: application/json" \
-d '{"task":"Fixed bug","result":"Resolved issue","save_as":"bug-fix"}'
# Get lightweight index
curl http://localhost:8090/memories/index
# Get SOUL.md
curl http://localhost:8090/soul
# Get journal
curl "http://localhost:8090/journal?date=2026-04-03"