Connect your AI Agents to bioRxiv in minutes

Merge lets you securely connect your agents to bioRxiv and thousands of tools instantly

Available tools

list_preprints

List preprints from bioRxiv or medRxiv by date range, count, or days. Returns up to 100 preprints per call with pagination support. Use interval formats: 'YYYY-MM-DD/YYYY-MM-DD' for date range, numeric for N recent (e.g., '50'), or 'Nd' for past N days (e.g., '7d').

get_preprint

Get metadata for a single preprint by DOI. Accepts both preprint DOIs (e.g., '10.1101/2024.01.01.123456') and published DOIs. Returns title, authors, abstract, dates, category, and publication info if available.

search_recent_preprints

Get the most recent preprints from bioRxiv or medRxiv. A convenience tool for quickly fetching recent submissions. Returns 1-100 preprints sorted by submission date (newest first).

View all tools by creating a free accountSee more tools

How to set up Merge Agent Handler

In an mcp.json file, add the configuration below, and restart Cursor.

Learn more in the official documentation ↗

1{
2  "mcpServers": {
3    "agent-handler": {
4      "url": "https://ah-api-develop.merge.dev/api/v1/tool-packs/{TOOL_PACK_ID}/registered-users/{REGISTERED_USER_ID}/mcp",
5      "headers": {
6        "Authorization": "Bearer yMt*****"
7      }
8    }
9  }
10}
11
Copy Code

Open your Claude Desktop configuration file and add the server configuration below. You'll also need to restart the application for the changes to take effect.

Make sure Claude is using the Node v20+.

Learn more in the official documentation ↗

1{
2  "mcpServers": {
3    "agent-handler": {
4      "command": "npx",
5      "args": [
6        "-y",
7        "mcp-remote@latest",
8        "https://ah-api-develop.merge.dev/api/v1/tool-packs/{TOOL_PACK_ID}/registered-users/{REGISTERED_USER_ID}/mcp",
9        "--header",
10        "Authorization: Bearer ${AUTH_TOKEN}"
11      ],
12      "env": {
13        "AUTH_TOKEN": "yMt*****"
14      }
15    }
16  }
17}
Copy Code
Copied!

Open your Windsurf MCP configuration file and add the server configuration below.
Click on the refresh button in the top right of the Manage MCP server page or in the top right of the chat box in the box icon.

Learn more in the official documentation ↗

1{
2    "mcpServers": {
3      "agent-handler": {
4        "command": "npx",
5        "args": [
6          "-y",
7          "mcp-remote@latest",
8          "https://ah-api.merge.dev/api/v1/tool-packs/<tool-pack-id>/registered-users/<registered-user-id>/mcp",
9          "--header",
10          "Authorization: Bearer ${AUTH_TOKEN}"
11        ],
12        "env": {
13          "AUTH_TOKEN": "<ah-production-access-key>"
14        }
15      }
16    }
17  }
Copy Code

In Command Palette (Cmd+Shift+P on macOS, Ctrl+Shift+P on Windows), run "MCP: Open User Configuration".

You can then add the configuration below and press "start" right under servers. Enter the auth token when prompted.

Learn more in the official documentation ↗

1{
2  "inputs": [
3    {
4      "type": "promptString",
5      "id": "agent-handler-auth",
6      "description": "Agent Handler AUTH_TOKEN", // "yMt*****" when prompt
7      "password": true
8    }
9  ],
10  "servers": {
11    "agent-handler": {
12      "type": "stdio",
13      "command": "npx",
14      "args": [
15        "-y",
16        "mcp-remote@latest",
17        "https://ah-api-develop.merge.dev/api/v1/tool-packs/{TOOL_PACK_ID}/registered-users/{REGISTERED_USER_ID}/mcp",
18        "--header",
19        "Authorization: Bearer ${input:agent-handler-auth}"
20      ]
21    }
22  }
23}
Copy Code

FAQs on using Merge's bioRxiv  MCP server

FAQs on using Merge's bioRxiv  MCP server

What is a bioRxiv MCP?

It's an MCP server that gives your agents access to bioRxiv's preprint repository via tools. Your agents can invoke these tools to search for recent preprints, retrieve metadata by DOI, filter publications by date range or server, and more.

Cold Spring Harbor Laboratory doesn't offer an MCP server purpose built for bioRxiv, but you can use one from a third-party platform, like Merge Agent Handler.

How can I use the bioRxiv MCP server?

The use cases naturally depend on the agent you've built, but here are a few common ones:

  • Research digest delivery: An agent pulls the most recent bioRxiv preprints in a specified subject area on a daily or weekly schedule and sends a formatted summary to a research team via Slack or email, keeping scientists current without manual literature searches
  • RAG knowledge base ingestion: An agent retrieves new preprints matching a topic and ingests their abstracts and metadata into a vector database, keeping a retrieval-augmented generation system current with the latest findings in a field
  • Preprint monitoring for competitive intelligence: A biopharma or research organization runs an agent that tracks preprints from specific institutions or authors and alerts a team when new work is published in a target area
  • Literature review assistance: An agent accepts a research question from a scientist, searches recent bioRxiv preprints for relevant work, and returns a structured summary of findings with DOI links for further reading

What are popular tools for bioRxiv's MCP server?

Here are some of the most commonly used tools:

  • list_preprints: retrieves preprints from bioRxiv or medRxiv filtered by date range or count. Useful for agents that need to pull a batch of recent publications for a digest, ingestion pipeline, or trend analysis
  • get_preprint: fetches full metadata for a single preprint using its DOI, including title, authors, abstract, and version history. Call this when an agent needs to retrieve structured details about a specific paper before summarizing or storing it
  • search_recent_preprints: returns the most recently posted preprints from bioRxiv or medRxiv. Good for workflows that need a live feed of new publications to power alert systems or keep a knowledge base current

What makes Merge Agent Handler's bioRxiv MCP server better than alternative bioRxiv MCP servers?

There are a few reasons to use Merge Agent Handler's bioRxiv MCP server over a community-built alternative:

  • Enterprise-grade security and DLP: Merge Agent Handler includes built-in data loss prevention controls that let you block or redact fields before they reach an agent. For bioRxiv, this means you can control exactly which metadata fields an agent surfaces, useful for organizations with strict data governance policies around research outputs
  • Managed authentication and credentials: Merge stores and refreshes bioRxiv credentials on your behalf. You never expose raw API keys or OAuth tokens to an agent or manage token rotation manually
  • Real-time observability and audit trail: Every tool call made against bioRxiv is logged with timestamp, tool name, input parameters, and response metadata. You can audit exactly what an agent queried without instrumenting anything yourself
  • Tool Packs and controlled access: Tool Packs let you bundle specific bioRxiv tools with tools from other connectors into a single MCP endpoint, scoped to a specific use case. An agent gets exactly the tools it needs, nothing more

How can I start using Merge Agent Handler's bioRxiv MCP server?

You can take the following steps:

1. Create or log into your Merge Agent Handler account.

2. Install the Merge CLI by running pipx install merge-api, then run merge configure to link the CLI to your Merge account and merge login to authenticate your session.

3. Register the Agent Handler MCP server with Claude Code by running claude mcp add --transport http agent-handler https://ah-api.merge.dev/mcp, then open Claude Code and run /mcp to confirm agent-handler appears with a connected status.

4. Select agent-handler from the MCP list. This opens a browser window where you select which integrations to authenticate. Choose bioRxiv and complete the auth flow. Merge stores and manages the credentials going forward.

5. Open a Claude Code session and start querying bioRxiv data directly. The first time you use a bioRxiv tool, a Magic Link may appear to complete connector authentication.

If you want to connect Merge Agent Handler's bioRxiv MCP with internal or customer-facing agentic products, you can follow the steps in our docs.

Explore other MCP servers built and managed by Merge

activecampaign
ActiveCampaign
ahrefs
Ahrefs
airtable
Airtable
amadeus
Amadeus
amazon_s3
Amazon S3
amplitude
Amplitude
anaplan
Anaplan
apollo
Apollo
arize
Arize
articulate
Articulate Reach 360
asana
Asana
attio
Attio
aviationstack
Aviationstack
bamboohr
BambooHR
basecamp
Basecamp
bitbucket
Bitbucket
bitly
Bitly
box
Box
calendly
Calendly
canva
Canva
clickup
ClickUp
clinicaltrials
ClinicalTrials.gov
cloudflare
Cloudflare
cms_coverage
CMS Coverage

Ready to try it out?

Whether you're an engineer experimenting with agents or a product manager looking to add tools, you can get started for free now