Recall Memory
Retrieves stored knowledge about the user, project, and development preferences from the memory MCP.
Usage
code
/recall-memory
Behavior
- •
Read the full knowledge graph:
codemcp__memory__read_graph()
- •
Display entities and their observations organized by type:
- •Developer preferences
- •Project context
- •Coding conventions
- •Any other stored knowledge
- •
Acknowledge the recalled context and apply it to the current session.
Output Format
markdown
## Recalled Memory ### Developer: [Name] - [observations...] ### Project: [Name] - [observations...] ### Preferences - [observations...] ### Relations - [entity] → [relation] → [entity] --- *Memory recalled. These preferences will be applied to this session.*
When to Use
- •At the start of a new session
- •When unsure about project conventions
- •When asked "what do you remember?"
- •Before making decisions that might conflict with stored preferences
Adding to Memory
To add new information:
code
mcp__memory__create_entities([{ name: "Name", entityType: "Type", observations: ["fact"] }])
mcp__memory__add_observations([{ entityName: "Name", contents: ["new fact"] }])
mcp__memory__create_relations([{ from: "A", to: "B", relationType: "relates_to" }])