remind
by sandst1·★ 78·综合分 46
Remind 是一个 AI 智能体记忆层,提取和保留概念化知识而非简单文本。
概述
Remind 作为一个复杂的 AI 智能体记忆层工作,既提供模式概念用于泛化,又保留事实簇用于详细信息。与传统 RAG 系统不同,它通过整合过程从经验中提取概念化知识。MCP 服务器为 Cursor 和 Claude Desktop 等 IDE 智能体提供集中式记忆,具有 Web UI、REST API 和多种数据库后端,包括支持向量搜索的 SQLite 和 PostgreSQL。
试试问 AI
装完之后,这里有 3 个你可以让 AI 做的事:
什么时候选它
当你需要一个将体验合并为抽象知识而非仅存储原始文本的 AI 记忆系统时,选择 Remind。
什么时候不要选它
如果你需要精确的原文回忆,不要选择 Remind,因为它存储的是抽象概念,可能会丢失原始措辞。
此 server 暴露的工具
从 README 抽取出 12 个工具rememberAdd 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
可对比工具
安装
# 安装包
pip install remind-mcp
# 启动 MCP 服务器
remind-mcp --port 8765配置 Claude Desktop:
{
"mcpServers": {
"remind": {
"url": "http://127.0.0.1:8765/sse?db=my-project"
}
}
}可选,安装额外功能:
pip install "remind-mcp[postgres]" # PostgreSQL 支持
pip install "remind-mcp[rerank]" # 跨编码器重新排序remind 对比
最后更新于 · 由 README + GitHub 公开数据自动生成。