gui_answer_card
Submit ease ratings (1-4) for Anki cards to manage learning progress and optimize review intervals using the Anki MCP server.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ease | Yes | Ease rating: 1 (Again), 2 (Hard), 3 (Good), 4 (Easy) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"ease": {
"description": "Ease rating: 1 (Again), 2 (Hard), 3 (Good), 4 (Easy)",
"maximum": 4,
"minimum": 1,
"type": "number"
}
},
"required": [
"ease"
],
"type": "object"
}