fetch_summary
Retrieve detailed scientific article information from PubMed using PMIDs to access research data efficiently.
Instructions
Fetch detailed article information from PubMed using PMIDs.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| pmids | Yes | Array of PubMed IDs (PMIDs) to fetch |
Input Schema (JSON Schema)
{
"properties": {
"pmids": {
"description": "Array of PubMed IDs (PMIDs) to fetch",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"pmids"
],
"type": "object"
}