Get Zotero Item
zotero_get_itemRetrieve complete metadata for a Zotero item using its 8-character key, with optional formatted citation (e.g., APA).
Instructions
Retrieve full metadata for a single item by its key, optionally including a formatted bibliography entry.
Args:
item_key (string): 8-character Zotero item key
include_bibliography (boolean): also return a formatted reference (default: false)
citation_style (string): CSL style name for the bibliography, e.g. 'apa' (default: 'apa')
response_format ('markdown' | 'json')
Returns: full item data (type, creators, title, date, DOI/URL, abstract, tags, collections, notes count), plus a formatted bibliography entry if requested.
Examples:
Use when: "get the full record for item X42A7DEE" -> item_key="X42A7DEE"
Use when: "give me an APA citation for this item" -> include_bibliography=true, citation_style="apa"
Don't use when: searching by title/author (use zotero_search_items instead)
Error Handling:
Returns "Error: Not found (404)" if the item key doesn't exist in this library
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| item_key | Yes | The 8-character Zotero item key (e.g. 'X42A7DEE'). | |
| citation_style | No | CSL citation style to use when include_bibliography is true, e.g. 'apa', 'chicago-note-bibliography', 'modern-language-association' (default: 'apa'). | apa |
| response_format | No | Output format: 'markdown' for human-readable text or 'json' for machine-readable structured data. | markdown |
| include_bibliography | No | If true, also return a formatted bibliography entry for the item (default: false). |