delete_note_tool
Remove a note from your Obsidian vault by specifying its path. Returns the deletion status for confirmation.
Instructions
Delete a note from the vault.
Args:
path: Path to the note to delete
Returns:
Deletion status
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ctx | No | ||
path | Yes |
Input Schema (JSON Schema)
{
"properties": {
"ctx": {
"default": null,
"title": "Ctx"
},
"path": {
"title": "Path",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}