open_memories
Retrieve specific memories by their IDs with detailed information including relations to other memories and decay scores for contextual recall.
Instructions
Retrieve specific memories by their IDs.
Similar to the reference MCP memory server's open_nodes functionality.
Returns detailed information about the requested memories including
their relations to other memories.
Args:
memory_ids: Single memory ID or list of memory IDs to retrieve.
include_relations: Include relations from/to these memories.
include_scores: Include decay scores and age.
Returns:
Detailed information about the requested memories with relations.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
include_relations | No | ||
include_scores | No | ||
memory_ids | Yes |
Input Schema (JSON Schema)
{
"properties": {
"include_relations": {
"default": true,
"title": "Include Relations",
"type": "boolean"
},
"include_scores": {
"default": true,
"title": "Include Scores",
"type": "boolean"
},
"memory_ids": {
"anyOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
],
"title": "Memory Ids"
}
},
"required": [
"memory_ids"
],
"type": "object"
}