get_full_memory
Retrieve full content of a memory document, preserving all Markdown formatting (headings, bold, italic, code, links, tables, lists). Use the memory ID to access detailed project context.
Instructions
Retrieve the complete content of a memory document with all Markdown formatting preserved (headings, bold, italic, code
, links, tables, lists, etc.)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
memory_id | Yes | The ID of the memory document to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"memory_id": {
"description": "The ID of the memory document to retrieve",
"type": "string"
}
},
"required": [
"memory_id"
],
"type": "object"
}