delete_notes
Remove specified notes from the Anki MCP server by providing an array of note IDs. Simplify note management and declutter your Anki database efficiently.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
noteIds | Yes | Array of note IDs to delete |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"noteIds": {
"description": "Array of note IDs to delete",
"items": {
"type": "number"
},
"type": "array"
}
},
"required": [
"noteIds"
],
"type": "object"
}