deck_changeDeck
Move specified Anki flashcard IDs to a new or existing deck, simplifying deck organization and management directly through the MCP server.
Instructions
Moves cards with the given IDs to a different deck, creating the deck if it doesn't exist yet.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cards | Yes | A list of card IDs to move. | |
deck | Yes | The target deck name. |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"cards": {
"description": "A list of card IDs to move.",
"items": {
"type": "integer"
},
"title": "Cards",
"type": "array"
},
"deck": {
"description": "The target deck name.",
"title": "Deck",
"type": "string"
}
},
"required": [
"cards",
"deck"
],
"type": "object"
}