get_section
Retrieve a specific section from a memory document by providing the memory ID and section name. Simplifies accessing structured project knowledge for agents.
Instructions
Retrieve a specific section from a memory document
Input Schema
Name | Required | Description | Default |
---|---|---|---|
memory_id | Yes | The ID of the memory document to read from | |
section | Yes | The section name to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"memory_id": {
"description": "The ID of the memory document to read from",
"type": "string"
},
"section": {
"description": "The section name to retrieve",
"type": "string"
}
},
"required": [
"memory_id",
"section"
],
"type": "object"
}