obsidian_append_content
Append content to existing Obsidian notes or create new files. Use this tool to add thoughts, references, and connections to your Zettelkasten knowledge base.
Instructions
Append content to the end of an existing file or create new file.
Quick way to add content to notes. Useful for adding new thoughts, references,
or connections to existing Zettelkasten notes.
Args:
params (AppendContentInput): Contains:
- filepath (str): Path to file
- content (str): Content to append
Returns:
str: Success message with updated file info
Example:
Add a new related concept to an existing note.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Input Schema (JSON Schema)
{
"properties": {
"params": {
"$ref": "#/$defs/AppendContentInput"
}
},
"required": [
"params"
],
"type": "object"
}