mcp_engram_relate
Links two existing concepts with a directional, labeled edge for knowledge graphs. Store relationships like 'depends_on' or 'contradicts' to enable semantic memory retrieval.
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. Optional volatility α ∈ (0,1] is the RoMem semantic speed gate (static≈0.1, dynamic≈0.85); omit to auto-infer from label. WHEN TO USE: When you discover a meaningful relationship — 'depends_on', 'implements', 'contradicts', 'supersedes', etc. 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', 'supersedes') | |
| concept_a | Yes | Source concept | |
| concept_b | Yes | Target concept | |
| volatility | No | Optional semantic-speed-gate α in (0,1]: low=static fact, high=temporally volatile. Default: label heuristic. |