create_memory_relationship
Establish and define relationships between memories in the AGI MCP Server by specifying source, target, and relationship type (causal, temporal, semantic, emotional, strategic, or consolidation).
Instructions
Create a relationship between two memories
Input Schema
Name | Required | Description | Default |
---|---|---|---|
from_memory_id | Yes | UUID of the source memory | |
properties | No | Additional properties for the relationship | |
relationship_type | Yes | Type of relationship | |
to_memory_id | Yes | UUID of the target memory |
Input Schema (JSON Schema)
{
"properties": {
"from_memory_id": {
"description": "UUID of the source memory",
"type": "string"
},
"properties": {
"default": {},
"description": "Additional properties for the relationship",
"type": "object"
},
"relationship_type": {
"description": "Type of relationship",
"enum": [
"causal",
"temporal",
"semantic",
"emotional",
"strategic",
"consolidation"
],
"type": "string"
},
"to_memory_id": {
"description": "UUID of the target memory",
"type": "string"
}
},
"required": [
"from_memory_id",
"to_memory_id",
"relationship_type"
],
"type": "object"
}