obsidian_append_to_note
Append markdown to the end of an Obsidian note, creating it if missing. Existing content stays untouched, and repeated calls add new content each time.
Instructions
Add markdown to the end of a note, creating the note if it does not exist.
Safe by design: nothing already in the note is modified. Repeated calls append repeatedly.
Args: params (AppendNoteInput): - path (str): Vault-relative path - content (str): Markdown to append
Returns: str: JSON of the shape {"status": "ok", "action": "appended", "path": str, "backend": "rest"|"filesystem"} On failure: "Error: "
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |