Install
$ agentstack add skill-geek96-paper-research-skill-paper-zotero ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Paper Zotero
Overview
Imports selected papers into Zotero via mcp-zotero. Supports DOI-based import (preferred — auto-fetches full metadata + OA PDF via Unpaywall) and PDF import with fulltext indexing. Auto-creates a named collection for the batch.
Required MCP
mcp-zotero (Xevos117) must be installed and configured with ZOTERO_API_KEY and ZOTERO_USER_ID.
Actual MCP Tool Names
Use these exact tool names when calling mcp-zotero:
| Action | Tool | |--------|------| | List collections | get_collections | | Create collection | create_collection | | Import by DOI | add_items_by_doi | | Import PDF from path/URL | import_pdf_to_zotero | | Search library | search_library | | Get item details | get_items_details |
Input
Accepts paper-fetch output JSON, or ask the user for:
- PDF file paths and/or DOI list
- Target Zotero collection name (default: derive from search topic, e.g.
RAG for Code Generation)
Steps
- Resolve collection
- Call
get_collectionsto check if a collection with the target name already exists - If not, call
create_collectionwith the topic name → save returnedcollection_key
1b. Deduplication pre-check (run before any import)
- For each paper with a DOI or arXiv ID, call
search_librarywith the arXiv ID or DOI as the query - If a result is returned: skip
add_items_by_doifor that paper, use the existingzotero_keyinstead, log as "already in library" - Only call
add_items_by_doifor papers not already in the library
- Import each paper
- If DOI available → call
add_items_by_doiwithdoisarray andcollection_key - This auto-attaches OA PDF via Unpaywall when a direct PDF link is found
- If only local PDF path available → call
import_pdf_to_zoterowith the file path
- PDF fallback (run after step 2)
- For each paper where
pdf_attached: falsein theadd_items_by_doiresponse: - If
paper-fetchdownloaded a local PDF for this paper, callimport_pdf_to_zoterowith that path - Otherwise log it as "PDF unavailable" — do not block the workflow
- Report summary
- "Imported N papers to Zotero collection '{{topic}}'"
- List papers with PDF status: ✅ PDF attached / ⚠️ metadata only
Output
{
"collection_key": "NUZMGKE7",
"collection_name": "RAG for Code Generation",
"imported": [
{
"title": "Attention Is All You Need",
"doi": "10.48550/arXiv.1706.03762",
"zotero_key": "ABC123DE",
"pdf_attached": true
}
],
"failed": []
}
Pass zotero_key values to downstream Obsidian sub-skills so notes can link back to Zotero.
Common Issues
- Duplicate detection: Always run the deduplication pre-check in step 1b before importing. If
add_items_by_doistill returns a duplicate warning despite the pre-check, skip and log the existing key. - Missing metadata: If DOI import returns incomplete metadata, inform the user which fields are missing rather than silently leaving them blank.
- PDF quota exceeded: Zotero free storage is 300 MB. If upload fails with a quota error, log the paper title and continue — do not abort the whole batch.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: Geek96
- Source: Geek96/paper-research-skill
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.