create_note
Create new notes in your Obsidian vault by specifying the vault name, file path, and content. Add frontmatter metadata to organize and structure your knowledge base effectively.
Instructions
Create a new note
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | Note content | |
frontmatter | No | Frontmatter metadata | |
path | Yes | Path for the new note | |
vault | Yes | Vault name |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "Note content",
"type": "string"
},
"frontmatter": {
"description": "Frontmatter metadata",
"type": "object"
},
"path": {
"description": "Path for the new note",
"type": "string"
},
"vault": {
"description": "Vault name",
"type": "string"
}
},
"required": [
"vault",
"path",
"content"
],
"type": "object"
}