mcp_engram_relate
Relate two existing memories by creating a directed edge with a semantic label (e.g., 'depends_on'). This builds a navigable knowledge graph for traversal and visualization.
Instructions
Create a directional knowledge graph edge between two concepts using VSA OP_BIND. Stores the edge as a ZEDOS_RELATION block linking concept_a →[label]→ concept_b. WHEN TO USE: When you discover a meaningful relationship between two memories — 'depends_on', 'implements', 'contradicts', 'derived_from', 'same_category', etc. This builds a navigable knowledge graph. Use mcp_engram_search_by_relation to traverse it and mcp_engram_visualize to render a Mermaid diagram of the subgraph. Both concepts must already exist in memory before relating them.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| label | Yes | Relation label (e.g. 'depends_on', 'implements') | |
| concept_a | Yes | Source concept | |
| concept_b | Yes | Target concept |