delete_note
Remove notes from your Obsidian vault by moving them to trash or deleting permanently to manage your knowledge base and maintain organized content.
Instructions
Delete a note (moves to .trash by default)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | Yes | ||
permanent | No |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"title": "Path",
"type": "string"
},
"permanent": {
"default": false,
"title": "Permanent",
"type": "boolean"
}
},
"required": [
"path"
],
"type": "object"
}