skills/pubmed-cli/SKILL.md
Search PubMed, fetch article metadata, traverse citation graphs, and look up MeSH terms from the command line. Use when: (1) Searching PubMed with Boolean/MeSH queries, (2) Fetching article details by PMID (abstract, authors, DOI, MeSH terms), (3) Finding papers that cite a given article (cited-by), (4) Finding papers cited by a given article (references), (5) Finding related articles with relevance scores, (6) Looking up MeSH vocabulary (tree numbers, scope notes), (7) Exporting citations in RIS format for Zotero/EndNote, (8) Building reproducible literature review workflows.
npx skillsauth add drpedapati/sciclaw pubmed-cliInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
PubMed from your terminal. Search, fetch, cite, traverse — built for humans and AI agents. Zero dependencies, structured JSON, agent-ready.
brew tap drpedapati/tap
brew install sciclaw-pubmed-cli
Binary: /opt/homebrew/bin/pubmed
Verify: pubmed --help
Set your NCBI API key for higher rate limits (recommended):
export NCBI_API_KEY="your-key"
If you're using sciClaw, you can also set this via the sciclaw onboard wizard, or in ~/.picoclaw/config.json:
{
"tools": {
"pubmed": { "api_key": "your-key" }
}
}
pubmed search "fragile x syndrome" --json --limit 10
pubmed search "autism AND EEG" --json --limit 20 --sort date
pubmed search "ALS" --json --year 2023-2025 --type review
pubmed search "CRISPR" --json --sort cited --limit 5
Returns: count (total hits), ids (PMIDs), query_translation (how NCBI interpreted the query).
Supports: Boolean operators (AND, OR, NOT), MeSH terms ([MeSH Terms]), field tags ([Title/Abstract], [Author]), wildcards (neoplas*), phrase search ("exact phrase").
pubmed fetch 38000001 --json
pubmed fetch 38000001 38000002 38000003 --json
pubmed fetch "38000001,38000002" --json
Returns per article: pmid, title, abstract, abstract_sections (structured), authors (with affiliations), journal, volume, issue, pages, year, doi, pmcid, mesh_terms (with major topic flags), publication_types.
pubmed cited-by 38000001 --json --limit 10
Returns: source_id, links (PMIDs of citing papers).
pubmed references 38000001 --json --limit 10
Returns: source_id, links (PMIDs of referenced papers).
pubmed related 38000001 --json --limit 10
Returns: source_id, links (PMIDs with score — higher = more similar).
pubmed mesh "depression" --json
pubmed mesh "autism spectrum disorder" --json
Returns: ui (MeSH ID), name, scope_note, tree_numbers, entry_terms (synonyms), annotation.
| Flag | Format | Use case |
|------|--------|----------|
| --json | Structured JSON | Agent parsing, programmatic use |
| --human / -H | Rich terminal tables | Interactive exploration |
| --csv FILE | CSV export | Spreadsheet import, data analysis |
| --ris FILE | RIS citations | Zotero, EndNote, Mendeley import |
Always use --json for agent workflows. The other formats are for human review and export.
| Flag | Values | Example |
|------|--------|---------|
| --limit N | Any positive integer (default 20) | --limit 50 |
| --sort | relevance, date, cited | --sort cited |
| --year | YYYY or YYYY-YYYY | --year 2020-2025 |
| --type | review, trial, meta-analysis, randomized, case-report, or custom | --type review |
# 1. Search with filters
pubmed search "ALS AND biomarkers" --json --limit 50 --year 2020-2025 --type review > search.json
# 2. Fetch full details for top results
cat search.json | jq -r '.ids[:10] | join(" ")' | xargs pubmed fetch --json > articles.json
# 3. Check what each key paper cites
pubmed references 38000001 --json --limit 20 > refs.json
# 4. Find related work
pubmed related 38000001 --json --limit 20 > related.json
# 5. Export for reference manager
pubmed fetch 38000001 38000002 38000003 --ris bibliography.ris
# Start with a seed paper
pubmed fetch 38000001 --json
# Forward citations (who cited this?)
pubmed cited-by 38000001 --json --limit 20
# Backward citations (what did this cite?)
pubmed references 38000001 --json --limit 20
# Similar papers (NCBI's relevance algorithm)
pubmed related 38000001 --json --limit 20
# Chain: fetch details of citing papers
pubmed cited-by 38000001 --json | jq -r '.links[].id' | head -5 | xargs pubmed fetch --json
# 1. Look up the correct MeSH term
pubmed mesh "fragile x" --json
# 2. Use the official MeSH term in search
pubmed search '"Fragile X Syndrome"[MeSH Terms]' --json --limit 20
# 3. Combine with other terms
pubmed search '"Fragile X Syndrome"[MeSH] AND EEG[Title/Abstract]' --json --year 2020-2025
0 — success1 — user error (invalid flags, bad PMID) or API failureError messages are written to stderr with actionable descriptions.
Built-in rate limiter respects NCBI guidelines:
Retry-After headersdevelopment
Get current weather and forecasts (no API key required).
tools
Remote-control tmux sessions for interactive CLIs by sending keystrokes and scraping pane output.
content-media
Summarize or extract text/transcripts from URLs, podcasts, and local files (great fallback for “transcribe this YouTube/video”).
data-ai
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.