update_section
Modify or append content to a specific section of a memory document using Markdown formatting. Supports headings, bold, italic, code, links, lists, and tables for structured updates.
Instructions
Update an entire section of a memory document. Content supports full Markdown formatting including headings, bold, italic, code blocks
, links, lists, tables, and all standard Markdown syntax.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | The new content for the section. Supports full Markdown: headings (#), **bold**, *italic*, `code`, [links](url), ```code blocks```, lists, tables, etc. | |
memory_id | Yes | The ID of the memory document to update | |
mode | No | Whether to append to or replace the section content (default: append) | |
section | Yes | The section name to update |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "The new content for the section. Supports full Markdown: headings (#), **bold**, *italic*, `code`, [links](url), ```code blocks```, lists, tables, etc.",
"type": "string"
},
"memory_id": {
"description": "The ID of the memory document to update",
"type": "string"
},
"mode": {
"description": "Whether to append to or replace the section content (default: append)",
"enum": [
"append",
"replace"
],
"type": "string"
},
"section": {
"description": "The section name to update",
"type": "string"
}
},
"required": [
"memory_id",
"section",
"content"
],
"type": "object"
}