create_note
Create new notes in your Obsidian vault with specified content, file paths, tags, and optional overwrite functionality for organized knowledge management.
Instructions
Create a new note in the vault
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | ||
overwrite | No | ||
path | Yes | ||
tags | No |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"title": "Content",
"type": "string"
},
"overwrite": {
"default": false,
"title": "Overwrite",
"type": "boolean"
},
"path": {
"title": "Path",
"type": "string"
},
"tags": {
"anyOf": [
{
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"title": "Tags"
}
},
"required": [
"path",
"content"
],
"type": "object"
}