remember
Store text data in memory. Omit session_id for permanent graph memory; include it for fast session caching.
Instructions
Store data in memory.
Two modes depending on whether session_id is provided:
Without session_id (permanent memory): Runs the full add + cognify
pipeline to ingest data and build the knowledge graph.
With session_id (session memory): Stores the data in the session
cache only. Fast, no entity extraction. Omit session_id when the
content should be stored as permanent graph memory.
Parameters
----------
data : str
The data to store (text content).
dataset_name : str, optional
Target dataset name. Defaults to the current MCP client's
agent-scoped dataset (e.g. "cursor_vscode_memory"), or
"main_dataset" if no client identity is detected.
session_id : str, optional
Session ID. When set, stores in session cache only.
custom_prompt : str, optional
Custom prompt for entity extraction (permanent mode only).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| data | Yes | ||
| dataset_name | No | ||
| session_id | No | ||
| custom_prompt | No |