zotero_create_item
Create a new empty Zotero item by selecting its type and setting optional fields, tags, or collections, then retrieve the new item's key for further use.
Instructions
Create a new empty item in the library, e.g. a journalArticle, book, report, or webpage. Pass only the fields you want set (title, date, creators, ...). Use zotero_item_metadata on an existing item to see valid field names for its type. Returns the new item's key.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| tags | No | Tags for the item. | |
| fields | No | Fields to set, e.g. {'title': 'T', 'date': '2024'}. Types use 'creators': [{'creatorType': 'author', 'firstName': 'A', 'lastName': 'B'}]. | |
| item_type | Yes | Zotero item type, e.g. 'journalArticle', 'book', 'report'. | |
| collection_keys | No | Collections to file the item in. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |