create_note
Generate and save new notes directly into an Obsidian vault by specifying the file path and content. Simplifies creating structured notes within your knowledge base.
Instructions
Create a new note in the Obsidian vault
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | Content of the note | |
path | Yes | Path where the note should be created |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "Content of the note",
"type": "string"
},
"path": {
"description": "Path where the note should be created",
"type": "string"
}
},
"required": [
"path",
"content"
],
"type": "object"
}