memory_related
Find related memories in Claude sessions using knowledge graph connections and semantic similarity analysis to maintain context continuity.
Instructions
Find memories related to a given memory using knowledge graph traversal and/or semantic similarity. Combines two strategies: (1) graph edges created via graph_connect or memory_store's relatedTo, and (2) cosine similarity between embeddings. Read-only. Use graph_explore for pure graph traversal with depth control; use memory_search for text-based search.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| memoryId | Yes | The anchor memory ID to find relations for | |
| includeGraph | No | Include knowledge graph connections (default: true) | |
| includeSemantic | No | Include semantically similar memories via embeddings (default: true) | |
| limit | No | Max results to return (default: 10) |