bc_get_biorxiv_preprint_details
Retrieve detailed metadata for bioRxiv or medRxiv preprints using a DOI. This tool extracts research information to support biomedical discovery and analysis.
Instructions
Get detailed information about a specific preprint by DOI.
This tool retrieves detailed metadata for a single preprint from bioRxiv or medRxiv using its DOI identifier.
Args: doi (str): DOI of the preprint (e.g., '10.1101/2020.09.09.20191205'). server (str): Server to search - 'biorxiv' or 'medrxiv' (default: 'biorxiv').
Returns: dict: Detailed preprint information or error message
Input Schema
Name | Required | Description | Default |
---|---|---|---|
doi | Yes | DOI of the preprint (e.g., '10.1101/2020.09.09.20191205') | |
server | No | Server to search: 'biorxiv' or 'medrxiv' | biorxiv |
Input Schema (JSON Schema)
{
"properties": {
"doi": {
"description": "DOI of the preprint (e.g., '10.1101/2020.09.09.20191205')",
"title": "Doi",
"type": "string"
},
"server": {
"default": "biorxiv",
"description": "Server to search: 'biorxiv' or 'medrxiv'",
"title": "Server",
"type": "string"
}
},
"required": [
"doi"
],
"type": "object"
}