memoraeu

Personal memory layer for AI assistants.

От сообщества: Добавлен пользователем или импортирован; проверьте владельца перед подключениемРаботаетБез входаГлобальныйБесплатноТолько чтение

Что умеет

  • Memory Store: Stores a piece of text as a durable memory in the user's MemoraEU account, with an optional category and tags. Applicable to preferences, decisions, biographical facts and long-lived con
  • Memory Recall: Searches the user's stored memories by meaning rather than exact wording, using a natural-language query. Returns the closest matches with a relevance score, their category and their ID
  • Memory Delete: Deletes one of the user's memories, identified by its full or partial ID. The memory stops appearing in searches and listings and its search vector is removed. Returns whether a matchin

Какие данные видит

Нужен ли аккаунт

Не нужен: сервер работает без входа

Personal memory layer for AI assistants. Store, search and recall preferences, decisions and facts — available from any MCP-compatible client.

Список инструментов сервера (20)

Технические названия из tools/list. Нужны только разработчикам.

memory_storeStores a piece of text as a durable memory in the user's MemoraEU account, with an optional category and tags. Applicable to preferences, decisions, biographical facts and long-lived constraints. Returns the stored memory's ID and its resolved category.
memory_recallSearches the user's stored memories by meaning rather than exact wording, using a natural-language query. Returns the closest matches with a relevance score, their category and their ID. Applicable when past context about the user would inform the current request.
memory_deleteDeletes one of the user's memories, identified by its full or partial ID. The memory stops appearing in searches and listings and its search vector is removed. Returns whether a matching memory was found.
memory_listLists the user's most recent memories, newest first, optionally narrowed to a single category. Returns a truncated preview of each memory with its category and ID; use memory_fetch to read one in full.
memory_categoriesLists every category present in the user's memories, ordered by how many memories use each one. Useful to discover the categories available before filtering memory_list or memory_recall.
fact_storeStore a structured fact as subject/predicate/object with optional temporal validity. Automatically invalidates any previous fact with the same subject and predicate.
fact_listRetrieves the structured facts currently true about a subject, optionally narrowed to one predicate. With history enabled, also returns superseded values along with the period during which each was valid.
fact_invalidateMarks a structured fact as no longer true from a given date, without deleting it: the fact stops appearing among current facts but remains visible in history. Defaults to today when no date is given.
memory_searchSearches the user's stored memories and returns a flat list of matches with their ID, relevance score, category and full content. Same search as memory_recall, in the result shape expected by deep-research clients.
memory_fetchRetrieves one memory in full by its ID, including its category, tags and complete content. Accepts a full or partial ID as returned by memory_recall, memory_search or memory_list.
skill_storeStores a reusable procedure or workflow (a 'skill') in the user's MemoraEU account: a name, a one-line summary and step-by-step instructions. Applicable to recurring tasks the user wants recorded. Returns the skill's ID.
skill_recallSearches the user's stored skills by meaning, using a natural-language description of a task. Returns the closest matching procedures with a relevance score and their ID. Applicable when a saved procedure may already cover the requested task.
skill_listLists the reusable procedures the user has stored, newest first, with the name, one-line summary and ID of each. Use skill_recall to find a skill by meaning rather than browsing the whole list.
skill_deleteDeletes one of the user's stored skills by its ID. The skill stops appearing in listings and recall results and its search vector is removed. Returns whether a matching skill was found.
agent_scheduleSchedule a recurring agent job. The agent will recall skills and memories, then generate a result stored as a memory.
agent_jobsLists the user's scheduled agent jobs as JSON, including each job's name, task, schedule, status, last run time and the ID of the memory produced by its most recent run.
agent_cancelCancels a scheduled agent job and removes it: it is unscheduled and will not run again. Memories already produced by the job are kept. Returns whether a matching job was found.
agent_run_nowRuns a scheduled agent job immediately instead of waiting for its next occurrence. Runs asynchronously: the result is stored as a new memory and delivered to every messaging channel the user has configured.
gateway_configureConfigure a messaging channel (Telegram, Slack, Discord, WhatsApp) so the agent can receive messages and send results there.
gateway_sendSends a text message to one of the user's own configured messaging channels, identified by its config ID. The message leaves MemoraEU and is delivered to the external platform; it cannot be recalled.