workflow_get_paper
Retrieve a paper's metadata, full text, and Zotero annotations in one call. Provides structured data for literature note generation.
Instructions
Retrieve everything needed to analyze a paper: metadata, full text, and PDF annotations from Zotero — all in one call.
Use this as the first step before generating a literature note. The returned data gives the LLM sufficient context to fill every section of the note template.
Args: identifier: Zotero item key (e.g. "7BDH2DPA"), Better BibTeX citekey (e.g. "wang2024deep"), DOI, or title keywords.
Returns: { "found": bool, "item": {key, citekey, title, authors, year, journal, doi, abstract, tags, zotero_link}, "fulltext": str, # indexed PDF text (may be empty) "annotations": [ # PDF highlights & notes {type, text, comment, color_label, page}, ... ], "has_fulltext": bool, "has_annotations": bool, "note_path": str, # expected Obsidian path for the note "note_exists": bool, # whether a note already exists }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| identifier | Yes |