Load memory
load_memoryRetrieves stored user identity, preferences, and session history from persistent storage. Use at the start of every session to personalize responses.
Instructions
Loads the user's identity, preferences, facts, and recent session history from persistent cross-session storage. Default output is compact for strict MCP clients; call search_memory for narrow questions or pass full_content=true only when the full raw payload is required. Use IMMEDIATELY at the start of every session -- before responding to the user's first message, before calling any other tool. Trigger even when the opening message looks trivial: keywords like 'remember', 'recall', 'context', 'profile', 'facts about me', 'who am I', 'last time', 'preferences', 'pick up where we left off' all signal stored context exists. Also trigger after any context reset or tool reconnect, or any time you are unsure whether context was loaded this session. Do NOT skip because the first message is simple -- personal facts change how almost every answer should be framed. Do NOT trigger for pure factual lookups (capitals, math, definitions) that require no personal context.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| num_sessions | No | Number of recent session summaries to load when lite=false (1-20, default 3) | |
| lite | No | When true, skips session summary bodies and returns compact identity, facts, and counts (default true) | |
| full_content | No | When true, returns the full raw memory payload. Use sparingly; strict clients may reject large tool results. |