delete_note
Remove unwanted notes from your Markdown collection by specifying the filename to delete. This tool helps maintain organized note management by eliminating unnecessary files.
Instructions
Delete a note
Args: filename: Note filename
Returns: Confirmation message of deletion
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| filename | Yes |
Input Schema (JSON Schema)
{
"properties": {
"filename": {
"title": "Filename",
"type": "string"
}
},
"required": [
"filename"
],
"type": "object"
}