delete_note
Remove notes by title or permalink from your knowledge management system, maintaining control over your locally stored Markdown files.
Instructions
Delete a note by title or permalink
Input Schema
Name | Required | Description | Default |
---|---|---|---|
identifier | Yes | ||
project | No |
Input Schema (JSON Schema)
{
"properties": {
"identifier": {
"title": "Identifier",
"type": "string"
},
"project": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Project"
}
},
"required": [
"identifier"
],
"type": "object"
}