delete_note
Remove notes from Obsidian vaults to maintain organized knowledge bases and eliminate outdated information.
Instructions
Delete a note
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | Yes | Path to the note | |
vault | Yes | Vault name |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"description": "Path to the note",
"type": "string"
},
"vault": {
"description": "Vault name",
"type": "string"
}
},
"required": [
"vault",
"path"
],
"type": "object"
}