zotero_advanced_search
Search your Zotero research library with advanced criteria, combining multiple conditions to filter, sort, and retrieve precise results efficiently.
Instructions
Perform an advanced search with multiple criteria.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| conditions | Yes | ||
| join_mode | No | all | |
| limit | No | ||
| sort_by | No | ||
| sort_direction | No | asc |
Input Schema (JSON Schema)
{
"properties": {
"conditions": {
"items": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"title": "Conditions",
"type": "array"
},
"join_mode": {
"default": "all",
"enum": [
"all",
"any"
],
"title": "Join Mode",
"type": "string"
},
"limit": {
"default": 50,
"title": "Limit",
"type": "integer"
},
"sort_by": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Sort By"
},
"sort_direction": {
"default": "asc",
"enum": [
"asc",
"desc"
],
"title": "Sort Direction",
"type": "string"
}
},
"required": [
"conditions"
],
"title": "advanced_searchArguments",
"type": "object"
}