delete_note
Remove a specific note from HackMD by providing its unique note ID using the MCP server's functionality.
Instructions
Delete a note
Input Schema
Name | Required | Description | Default |
---|---|---|---|
noteId | Yes | Note ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"noteId": {
"description": "Note ID",
"type": "string"
}
},
"required": [
"noteId"
],
"type": "object"
}