delete_item
Remove files or directories from an Obsidian vault by specifying their path using this tool, integrated with the Obsidian Local REST API MCP Server.
Instructions
Delete a file or directory from the vault
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | Yes | Path to the item to delete |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"description": "Path to the item to delete",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}