delete_note
Remove a note from the Obsidian vault by specifying its path, enabling direct management of notes through the MCP server for efficient knowledge base organization.
Instructions
Delete a note from the Obsidian vault
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | Yes | Path to the note within the vault |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"description": "Path to the note within the vault",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}