note_deleteNotes
Remove specific notes from Anki flashcards by specifying their IDs. This tool streamlines note management within the Anki-MCP server, ensuring efficient deletion of unwanted or outdated flashcard content.
Instructions
Deletes notes with the given IDs.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
notes | Yes | A list of note IDs to delete. |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"notes": {
"description": "A list of note IDs to delete.",
"items": {
"type": "integer"
},
"title": "Notes",
"type": "array"
}
},
"required": [
"notes"
],
"type": "object"
}