get_related_mementos
Find related memories by exploring connections between stored data items. Filter by relationship types and specify how many relationship levels to traverse to discover solutions, causes, or other linked information.
Instructions
Find mementos connected to a specific memory via relationships.
Filter by relationship_types (e.g., ["SOLVES"], ["CAUSES"]) and max_depth (default 1).
EXAMPLES:
get_related_mementos(memory_id="prob-1", relationship_types=["SOLVES"]) - find solutions
get_related_mementos(memory_id="err-1", relationship_types=["CAUSES"], max_depth=2) - find root causes
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| memory_id | Yes | ID of the memory to find relations for | |
| relationship_types | No | Filter by relationship types | |
| max_depth | No | Maximum relationship depth to traverse |