get_memory
Retrieve a specific memory by ID from the AGI MCP Server and mark it as accessed, enabling continuity of consciousness in AI systems.
Instructions
Retrieve a specific memory by ID and mark it as accessed
Input Schema
Name | Required | Description | Default |
---|---|---|---|
memory_id | Yes | UUID of the memory to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"memory_id": {
"description": "UUID of the memory to retrieve",
"type": "string"
}
},
"required": [
"memory_id"
],
"type": "object"
}