zotero_get_collection_items
Retrieve all items from a specified Zotero collection for research or analysis. Input the collection key and set an optional item limit to streamline access to your library content.
Instructions
Get all items in a specific Zotero collection.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
collection_key | Yes | ||
limit | No |
Input Schema (JSON Schema)
{
"properties": {
"collection_key": {
"title": "Collection Key",
"type": "string"
},
"limit": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": 50,
"title": "Limit"
}
},
"required": [
"collection_key"
],
"title": "get_collection_itemsArguments",
"type": "object"
}