bioRxiv
live ScienceResearchBiologybioRxiv + medRxiv preprint API — fetch preprints by DOI or date, see which were later published. Keyless.
Tools
details DEPRECATED ALIAS for biorxiv_details — identical behavior, kept for existing callers. New callers should use biorxiv_details.
No parameters required.
Try it
biorxiv_details bioRxiv / medRxiv preprint metadata by DOI or by date / date range.
No parameters required.
Try it
published DEPRECATED ALIAS for biorxiv_published — identical behavior, kept for existing callers. New callers should use biorxiv_published.
No parameters required.
Try it
biorxiv_published bioRxiv / medRxiv preprints that have since been published in a peer-reviewed journal.
No parameters required.
Try it
publisher DEPRECATED ALIAS for biorxiv_publisher — identical behavior, kept for existing callers. New callers should use biorxiv_publisher.
No parameters required.
Try it
biorxiv_publisher bioRxiv / medRxiv preprints subsequently published by a given DOI prefix (e.g. "10.1038" for Nature).
No parameters required.
Try it
summary bioRxiv submission/publication counts. Interval: "m" (monthly, default) or "y" (yearly). bioRxiv only — medRxiv has no /sum endpoint.
No parameters required.
Try it
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/biorxiv/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' curl -X POST https://gateway.pipeworx.io/biorxiv/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"details","arguments":{}}}' Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("details", {}); // Or ask in plain English:
const answer = await px.ask("biorxiv + medrxiv preprint api — fetch preprints by doi or date, see which were later published");