search
Search your Calibre ebook library using natural language queries or metadata field syntax to find specific books and content.
Instructions
Search the Calibre ebook library. Supports both full-text content search (default) and metadata search using field syntax.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
fuzzy_fallback | No | Alternative search terms if exact query fails | |
limit | No | Maximum number of results (default: 50) | |
query | Yes | Search query. For full-text: use natural language. For metadata: use field syntax (author:Name, title:"Title"). |
Input Schema (JSON Schema)
{
"properties": {
"fuzzy_fallback": {
"description": "Alternative search terms if exact query fails",
"type": "string"
},
"limit": {
"default": 50,
"description": "Maximum number of results (default: 50)",
"type": "integer"
},
"query": {
"description": "Search query. For full-text: use natural language. For metadata: use field syntax (author:Name, title:\"Title\").",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}