bgpt-paper-search
BGPT is a remote MCP server that searches a curated database of scientific papers built from raw experimental data extracted from full-text…
Maintainer K-Dense Inc. · Last updated April 1, 2026
Pyzotero is a Python wrapper for the [Zotero API v3](https://www.zotero.org/support/dev/web_api/v3/start). Use it to programmatically manage Zotero libraries: read items and collections, create and update references, upload attachments, manage tags, and export citations.
Original source
https://github.com/K-Dense-AI/claude-scientific-skills/tree/main/scientific-skills/pyzotero
Skill Snapshot
Source Doc
Required credentials — get from https://www.zotero.org/settings/keys:
/groups/ in the group URLStore credentials in environment variables or a .env file:
See references/authentication.md for full setup details.
from pyzotero import Zotero
zot = Zotero(library_id='123456', library_type='user', api_key='ABC1234XYZ')
## Retrieve top-level items (returns 100 by default)
items = zot.top(limit=10)
for item in items:
print(item['data']['title'], item['data']['itemType'])
Related skills
BGPT is a remote MCP server that searches a curated database of scientific papers built from raw experimental data extracted from full-text…
Visualize ChIP-seq data using deepTools, Gviz, and ChIPseeker. Create heatmaps, profile plots, and genome browser tracks. Visualize signal a…
Generate consensus FASTA sequences by applying VCF variants to a reference using bcftools consensus. Use when creating sample-specific refer…
Visualize copy number profiles, segments, and compare across samples. Create publication-quality plots of CNV data from CNVkit, GATK, or oth…