mcp_engram_relate
Create a directional knowledge graph edge between two concepts by storing a relation label (e.g., 'depends_on', 'implements') that links source concept to target concept, enabling navigable memory graph traversal.
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 |
|---|---|---|---|
| concept_a | Yes | Source concept | |
| concept_b | Yes | Target concept | |
| label | Yes | Relation label (e.g. 'depends_on', 'implements') |