Install
$ agentstack add skill-geek96-paper-research-skill-paper-fetch ✓ 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.
About
Paper Fetch
Overview
Searches multiple academic databases and downloads user-selected papers as PDFs. Uses paper-search-mcp for multi-source concurrent search with deduplication and open-access fallback.
Required MCP
openags/paper-search-mcp must be installed and configured.
Install:
npx -y @smithery/cli install @openags/paper-search-mcp --client claude
Input
Option A — Keyword Search
Ask the user for:
- Search terms (required)
- Sources to search:
arxiv,pubmed,semantic_scholar,biorxiv(default: all) - Date range, e.g.
2022-2025(optional) - Max results, e.g.
10(default: 10)
Option B — DOI / URL List
Accept a plain list, one per line:
10.48550/arXiv.1706.03762
10.1038/s41586-021-03819-2
https://arxiv.org/abs/2301.00001
Steps
- Call
search_papers(Option A) or skip directly to step 3 (Option B) - Present candidate table to user:
| # | Title | Authors | Year | Source | |---|-------|---------|------|--------| | 1 | Attention Is All You Need | Vaswani et al. | 2017 | arxiv |
Include one-line abstract excerpt under each row.
- Ask: "Which papers to download? (e.g. 1,3,5 or 'all')"
- Call
download_with_fallbackfor each selected paper (tries publisher link → Unpaywall → open access) - Return structured output (see below)
Output
Pass this JSON to the next step (paper-zotero or paper-note):
{
"papers": [
{
"title": "Attention Is All You Need",
"authors": ["Vaswani", "Shazeer", "Parmar"],
"year": 2017,
"doi": "10.48550/arXiv.1706.03762",
"source": "arxiv",
"pdf_path": "/tmp/papers/attention-is-all-you-need.pdf",
"abstract": "We propose a new simple network architecture..."
}
]
}
Common Issues
- PDF unavailable:
download_with_fallbacktries Unpaywall automatically. If still unavailable, set"pdf_path": nulland continue with remaining papers. - Too many results: Remind user to narrow date range or add more specific terms.
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.