
DeepMem
Mem0-compatible persistent memory for AI agents: write facts once, recall them semantically.
От сообщества: Добавлен пользователем или импортирован; проверьте владельца перед подключениемРаботаетНужен API-ключГлобальныйБесплатноМожет изменять данные
Что умеет
Какие данные видит
Нужен ли аккаунт
Нужен API-ключ из настроек сервиса
Mem0-compatible persistent memory for AI agents: write facts once, recall them semantically.
Список инструментов сервера (2)
Технические названия из tools/list. Нужны только разработчикам.
| deepmem_write | Write conversation messages to DeepMemory for fact extraction and persistent storage. Messages are processed by an LLM to extract structured memories, which are then embedded and stored in a vector database for later semantic search. Set infer=True to enable LLM fact extraction (produces richer memories but costs one LLM call). Set infer=False to store raw messages without extraction. Returns a list of memory IDs for successfully stored facts. |
| deepmem_search | Search memories stored in DeepMemory using semantic search. Returns the most relevant memories for the given query, ranked by hybrid scoring (vector similarity + BM25 keyword match + entity boost + time decay). Use this to retrieve context from past conversations before responding to the user. Memories are scoped to the user_id provided during write. |