basic-memory

write_note

Create or update a markdown note. Returns a markdown formatted summary of the semantic content.

Input Schema

NameRequiredDescriptionDefault
contentYes
folderYes
tagsNo
titleYes

Input Schema (JSON Schema)

{ "properties": { "content": { "title": "Content", "type": "string" }, "folder": { "title": "Folder", "type": "string" }, "tags": { "anyOf": [ { "items": { "type": "string" }, "type": "array" }, { "type": "null" } ], "default": null, "title": "Tags" }, "title": { "title": "Title", "type": "string" } }, "required": [ "title", "content", "folder" ], "title": "write_noteArguments", "type": "object" }