article_getter
Retrieve detailed article information, including title, abstract, full text (when available), and source, using PubMed IDs, PMC IDs, or DOIs with BioMCP's tool.
Instructions
Fetch detailed information for a specific article.
Retrieves the full abstract and available text for an article by its identifier.
Supports:
- PubMed IDs (PMID) for published articles
- PMC IDs for articles in PubMed Central
- DOIs for preprints from Europe PMC
Returns formatted text including:
- Title
- Abstract
- Full text (when available from PMC for published articles)
- Source information (PubMed or Europe PMC)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
pmid | Yes | Article identifier - either a PubMed ID (e.g., '38768446' or 'PMC11193658') or DOI (e.g., '10.1101/2024.01.20.23288905') |
Input Schema (JSON Schema)
{
"properties": {
"pmid": {
"description": "Article identifier - either a PubMed ID (e.g., '38768446' or 'PMC11193658') or DOI (e.g., '10.1101/2024.01.20.23288905')",
"title": "Pmid",
"type": "string"
}
},
"required": [
"pmid"
],
"title": "article_getterArguments",
"type": "object"
}