Stats
Actions
Tags
Help us improve
Share bugs, ideas, or general feedback.
Submit compact bioRxiv and medRxiv API requests for details, publication-linkage, and DOI lookups. Use when a user wants concise preprint metadata summaries
npx claudepluginhub robinebers/converted-plugins --plugin life-science-researchHow this skill is triggered — by the user, by Claude, or both
Slash command
/life-science-research:biorxiv-skillThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
- Use `scripts/rest_request.py` for all bioRxiv and medRxiv API calls.
Mandates invoking relevant skills via tools before any response in coding sessions. Covers access, priorities, and adaptations for Claude Code, Copilot CLI, Gemini CLI.
Share bugs, ideas, or general feedback.
scripts/rest_request.py for all bioRxiv and medRxiv API calls.base_url=https://api.biorxiv.org.max_items; for details and pubs pages, start around max_items=10.... in tool previews as UI truncation, not part of the true request.details/<server>/<start>/<end>/<cursor>/json, details/<server>/<doi>/na/json, pubs/<server>/<start>/<end>/<cursor>, and pubs/<server>/<doi>/na/json.save_raw=true and report the saved file path rather than pasting large collections into chat.base_url, pathmethod, params, headers, json_body, form_body, record_path, response_format, max_items, max_depth, timeout_sec, save_raw, raw_output_path{"base_url":"https://api.biorxiv.org","path":"details/biorxiv/2025-03-21/2025-03-28/0/json","record_path":"collection","max_items":10}{"base_url":"https://api.biorxiv.org","path":"details/medrxiv/10.1101/2020.09.09.20191205/na/json","record_path":"collection","max_items":10}{"base_url":"https://api.biorxiv.org","path":"pubs/medrxiv/2020-03-01/2020-03-30/0","record_path":"collection","max_items":10}ok, source, path, method, status_code, warnings, and either compact records or a compact summary.raw_output_path when save_raw=true.ok=false with error.code and error.message.echo '{"base_url":"https://api.biorxiv.org","path":"details/biorxiv/2025-03-21/2025-03-28/0/json","record_path":"collection","max_items":10}' | python scripts/rest_request.py
scripts/rest_request.py.