find_notes
Search and retrieve Anki notes using a specific query. Optionally include detailed note information and set a limit on the number of results returned for efficient organization and review.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
includeInfo | No | Whether to include detailed note information | |
limit | No | Maximum number of notes to return detailed info for | |
query | Yes | Anki search query to find notes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"includeInfo": {
"default": false,
"description": "Whether to include detailed note information",
"type": "boolean"
},
"limit": {
"default": 50,
"description": "Maximum number of notes to return detailed info for",
"type": "number"
},
"query": {
"description": "Anki search query to find notes",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}