remind
by sandst1·★ 78·Score 46
Remind is an AI agent memory layer that extracts and maintains generalized concepts rather than verbatim text.
Overview
Remind functions as a sophisticated memory layer for AI agents, offering both pattern concepts for generalizations and fact clusters for verbatim details. Unlike traditional RAG systems, it extracts generalized concepts from experiences through a consolidation process. The MCP server provides centralized memory for IDE agents like Cursor and Claude Desktop, featuring web UI, REST API, and multiple database backends including SQLite and PostgreSQL with vector search capabilities.
Try asking AI
After installing, here are 3 things you can ask your AI assistant:
When to choose this
Choose Remind when you need an AI memory system that consolidates experiences into abstract knowledge rather than just storing raw text.
When NOT to choose this
Don't choose Remind if you need verbatim text recall, as it stores generalized concepts and may lose original wording.
Tools this server exposes
12 tools extracted from the READMErememberAdd an episode to memory with optional type, entity, and metadata
recallRetrieve memories using semantic search or entity filtering
consolidateRun memory consolidation to extract generalized concepts
ingestAuto-ingest raw text to extract memory-worthy episodes
inspectList or view details of concepts or episodes
searchSearch across concepts using keywords or tags
entitiesList entities or show details of a specific entity
topicsManage topics and view topic-specific concepts
update-episodeUpdate content, type, entities, or topic of an episode
update-conceptUpdate title, summary, confidence, tags, or relations of a concept
exportExport memory to JSON format
importImport memories from JSON format
Comparable tools
Installation
# Install the package
pip install remind-mcp
# Start the MCP server
remind-mcp --port 8765Configure Claude Desktop:
{
"mcpServers": {
"remind": {
"url": "http://127.0.0.1:8765/sse?db=my-project"
}
}
}Optionally, install with additional features:
pip install "remind-mcp[postgres]" # For PostgreSQL support
pip install "remind-mcp[rerank]" # For cross-encoder rerankingCompare remind with
Last updated · Auto-generated from public README + GitHub signals.