can_add_notes
Add and validate notes to your Anki decks by specifying deck names, note models, field content, and optional tags using this efficient tool on Anki MCP.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
notes | Yes | Array of notes to validate |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"notes": {
"description": "Array of notes to validate",
"items": {
"additionalProperties": false,
"properties": {
"deckName": {
"description": "Name of the deck to add the note to",
"type": "string"
},
"fields": {
"additionalProperties": {
"type": "string"
},
"description": "Object with field names as keys and field content as values",
"type": "object"
},
"modelName": {
"description": "Name of the note model/type",
"type": "string"
},
"tags": {
"description": "Array of tags to add to the note",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"deckName",
"modelName",
"fields"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"notes"
],
"type": "object"
}