get_memory_relationships
Retrieve related memories for a specific memory ID in the AGI MCP Server, filtering by relationship direction or type to analyze connections within the AI's persistent memory system.
Instructions
Get relationships for a specific memory
Input Schema
Name | Required | Description | Default |
---|---|---|---|
direction | No | Direction of relationships to retrieve | both |
memory_id | Yes | UUID of the memory | |
relationship_type | No | Filter by relationship type (optional) |
Input Schema (JSON Schema)
{
"properties": {
"direction": {
"default": "both",
"description": "Direction of relationships to retrieve",
"enum": [
"incoming",
"outgoing",
"both"
],
"type": "string"
},
"memory_id": {
"description": "UUID of the memory",
"type": "string"
},
"relationship_type": {
"description": "Filter by relationship type (optional)",
"type": "string"
}
},
"required": [
"memory_id"
],
"type": "object"
}