An improved implementation of persistent memory using a local knowledge graph with a customizable --memory-path. This lets Claude remember information about the user across chats.
No reviews yet. Be the first to review!
Sign in to join the conversation
Store new memories (people, projects, concepts). Parameters: entities (array of objects containing name, entityType, and observations), context (optional string), location (optional string)
Add facts to existing memories. Parameters: memoryName (string), facts (array of strings), context (optional string)
Link two memories together. Parameters: memoryName1 (string), memoryName2 (string), context (optional string)
Search memories by keyword. Parameters: query (string), context (optional string)
Retrieve specific memories by exact name. Parameters: memoryName (string), context (optional string)
Read all memories in a database. Parameters: context (optional string)
List available databases. No parameters.
Forget memories. Parameters: memoryName (string), context (optional string)
Remove specific facts from a memory. Parameters: memoryName (string), facts (array of strings), context (optional string)
Remove links between memories. Parameters: memoryName1 (string), memoryName2 (string), context (optional string)