card_cardsToNotes
Retrieve note IDs associated with specific card IDs in Anki decks using the tool linked to the anki-mcp server. Ideal for organizing and managing flashcard-based learning materials.
Instructions
Returns an unordered array of note IDs for the given card IDs.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cards | Yes | A list of card IDs. |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"cards": {
"description": "A list of card IDs.",
"items": {
"type": "integer"
},
"title": "Cards",
"type": "array"
}
},
"required": [
"cards"
],
"type": "object"
}