get_article_references
Retrieve the bibliography of a PubMed article to uncover its cited foundational papers and methodologies.
Instructions
Get the references (bibliography) of a PubMed article.
Returns the list of articles that this paper cites in its bibliography. This is the OPPOSITE of find_citing_articles:
get_article_references: Papers THIS article cites (backward in time)
find_citing_articles: Papers that cite THIS article (forward in time)
═══════════════════════════════════════════════════════════════ 📚 BACKWARD CITATION SEARCH (Foundation Discovery) ═══════════════════════════════════════════════════════════════
Direction: Source Paper → Papers it cited (BACKWARD in time)
USE CASES: ──────────
🏛️ Find foundational papers: Core works the field builds on
⚗️ Methodology sources: Papers describing techniques used
📖 Background reading: Build understanding of a topic
🔍 Verify claims: Check sources for specific assertions
═══════════════════════════════════════════════════════════════ EXAMPLE WORKFLOW: ═══════════════════════════════════════════════════════════════
Start with a recent review article
get_article_references(pmid="38123456", limit=50) → Get the bibliography of this review
Find most-cited foundational papers
get_citation_metrics(pmids="last", sort_by="citation_count") → Identify which references are the most influential
Read a foundational paper
fetch_article_details(pmids="12345678") → Get full details of an important reference
Args: pmid: PubMed ID of the source article (accepts: "12345678", "PMID:12345678", 12345678). limit: Maximum number of references to return (1-100, default: 20).
Returns: List of referenced articles with details.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| pmid | Yes | ||
| limit | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |