MCP Catalogs
Home

remind

by sandst1·78·Score 46

Remind is an AI agent memory layer that extracts and maintains generalized concepts rather than verbatim text.

ai-llmknowledge-graphdeveloper-tools
11
Forks
4
Open issues
this month
Last commit
2d ago
Indexed

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:

you:Project memory management for development teams using AI coding assistants
you:Research assistance by consolidating and recalling information across multiple sessions
you:Personal knowledge management for AI-powered workflows

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 README
  • 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

Comparable tools

mem0semantic-workspaceknowledge-mcpsemantic-chunksmemoize

Installation

# Install the package
pip install remind-mcp

# Start the MCP server
remind-mcp --port 8765

Configure 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 reranking

Compare remind with

GitHub →

Last updated · Auto-generated from public README + GitHub signals.