remove_deck_config
Remove a deck configuration by its ID from Anki MCP. This tool helps streamline deck management and maintain organized study setups.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
configId | Yes | ID of the deck configuration to remove |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"configId": {
"description": "ID of the deck configuration to remove",
"type": "number"
}
},
"required": [
"configId"
],
"type": "object"
}