list_collection_items
List top-level items in a Zotero collection using its collection key. Returns item details including title, creators, date, abstract, and attachment count. Limit results up to 25.
Instructions
List items in a specific Zotero collection.
Args:
collection_key: The Zotero collection key (from list_collections)
limit: Requested items to return (default: 25, capped at 25).
limit=0 returns an empty result set, and the response includes
requested_limit, applied_limit, limit_cap, and
limit_capped so callers can detect clamping.
Returns:
JSON with collection_key, collection_found, items, total,
returned_count, and limit metadata (requested_limit,
applied_limit, limit_cap, limit_capped). total reports the
collection's available top-level item count from Zotero metadata and
returned_count reports how many items were actually included under
items. Each item includes key, title, creators, date,
truncated abstract (500 chars), attachment_count,
collections as {key, name} pairs, and other summary fields.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| collection_key | Yes | ||
| limit | No | Requested items to return. Values below 0 are treated as 0, values above 25 are clamped to 25, and the response reports `requested_limit`, `applied_limit`, `limit_cap`, and `limit_capped`. The response also reports `total` for the available top-level non-skipped items and `returned_count` for the number actually included under `items`. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |