delete_note
Remove a specific note from Joplin by providing its ID and confirmation flag using the Joplin MCP Server.
Instructions
Delete a note from Joplin (requires confirmation)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
confirm | No | Confirmation flag | |
note_id | Yes | ID of the note to delete |
Input Schema (JSON Schema)
{
"properties": {
"confirm": {
"description": "Confirmation flag",
"type": "boolean"
},
"note_id": {
"description": "ID of the note to delete",
"type": "string"
}
},
"required": [
"note_id"
],
"type": "object"
}