MCP Catalogs
首页

remind

by sandst1·78·综合分 46

Remind 是一个 AI 智能体记忆层,提取和保留概念化知识而非简单文本。

ai-llmknowledge-graphdeveloper-tools
11
Forks
4
活跃 Issue
本月
最近提交
2 天前
收录于

概述

Remind 作为一个复杂的 AI 智能体记忆层工作,既提供模式概念用于泛化,又保留事实簇用于详细信息。与传统 RAG 系统不同,它通过整合过程从经验中提取概念化知识。MCP 服务器为 Cursor 和 Claude Desktop 等 IDE 智能体提供集中式记忆,具有 Web UI、REST API 和多种数据库后端,包括支持向量搜索的 SQLite 和 PostgreSQL。

试试问 AI

装完之后,这里有 3 个你可以让 AI 做的事:

:开发团队使用 AI 编码助手管理项目记忆
:通过整合和跨会话回忆信息进行研究辅助
:AI 驱动工作流程的个人知识管理

什么时候选它

当你需要一个将体验合并为抽象知识而非仅存储原始文本的 AI 记忆系统时,选择 Remind。

什么时候不要选它

如果你需要精确的原文回忆,不要选择 Remind,因为它存储的是抽象概念,可能会丢失原始措辞。

此 server 暴露的工具

从 README 抽取出 12 个工具
  • remember

    Add an episode to memory with optional type, entity, and metadata

  • recall

    Retrieve memories using semantic search or entity filtering

  • consolidate

    Run memory consolidation to extract generalized concepts

  • ingest

    Auto-ingest raw text to extract memory-worthy episodes

  • inspect

    List or view details of concepts or episodes

  • search

    Search across concepts using keywords or tags

  • entities

    List entities or show details of a specific entity

  • topics

    Manage topics and view topic-specific concepts

  • update-episode

    Update content, type, entities, or topic of an episode

  • update-concept

    Update title, summary, confidence, tags, or relations of a concept

  • export

    Export memory to JSON format

  • import

    Import memories from JSON format

可对比工具

mem0semantic-workspaceknowledge-mcpsemantic-chunksmemoize

安装

# 安装包
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 对比

GitHub →

最后更新于 · 由 README + GitHub 公开数据自动生成。