gui_browse
Search and organize Anki cards using a query and optional sorting by column with ascending or descending order for efficient card management.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
query | Yes | Search query to browse cards | |
reorderCards | No | Optional reordering configuration |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"query": {
"description": "Search query to browse cards",
"type": "string"
},
"reorderCards": {
"additionalProperties": false,
"description": "Optional reordering configuration",
"properties": {
"columnId": {
"description": "Column to sort by",
"type": "string"
},
"order": {
"description": "Sort order",
"enum": [
"ascending",
"descending"
],
"type": "string"
}
},
"required": [
"columnId",
"order"
],
"type": "object"
}
},
"required": [
"query"
],
"type": "object"
}