Wraps the NCBI E-utilities API to search and retrieve biomedical literature from PubMed directly in your MCP client. No authentication required, which keeps setup simple. Part of the Pipeworx gateway, so you can either use it standalone or connect to the full gateway for access to 250+ data sources. The ask_pipeworx tool lets you query in plain English instead of constructing API calls manually. Reach for this when you need to pull research papers, clinical studies, or medical literature into your AI workflows without leaving Claude or your editor.
Public tool metadata for what this MCP can expose to an agent.
pubmed_search_articlesSearch PubMed with full query syntax, filters, and date ranges. Returns PMIDs and optional brief summaries. Supports field-specific filters (author, journal, MeSH terms), common filters (language, species, free full text), and pagination via offset for paging through large res...14 paramsSearch PubMed with full query syntax, filters, and date ranges. Returns PMIDs and optional brief summaries. Supports field-specific filters (author, journal, MeSH terms), common filters (language, species, free full text), and pagination via offset for paging through large res...
sortstringrelevance · pub_date · author · journaldefault: relevancequerystringauthorstringoffsetintegerjournalstringspeciesstringhumans · animalslanguagestringdateRangeobjectmeshTermsarraymaxResultsintegerhasAbstractbooleanfreeFullTextbooleansummaryCountintegerpublicationTypesarraypubmed_fetch_articlesFetch full article metadata by PubMed IDs. Returns detailed article information including abstract, authors, journal, MeSH terms.3 paramsFetch full article metadata by PubMed IDs. Returns detailed article information including abstract, authors, journal, MeSH terms.
pmidsarrayincludeMeshbooleanincludeGrantsbooleanpubmed_fetch_fulltextFetch full-text articles from PubMed Central (PMC). Returns complete article body text, sections, and references for open-access articles. Accepts PMC IDs directly or PubMed IDs (auto-resolved via ELink).5 paramsFetch full-text articles from PubMed Central (PMC). Returns complete article body text, sections, and references for open-access articles. Accepts PMC IDs directly or PubMed IDs (auto-resolved via ELink).
pmidsarraypmcidsarraysectionsarraymaxSectionsintegerincludeReferencesbooleanpubmed_format_citationsGet formatted citations for PubMed articles in APA, MLA, BibTeX, or RIS format.2 paramsGet formatted citations for PubMed articles in APA, MLA, BibTeX, or RIS format.
pmidsarraystylesarraypubmed_find_relatedFind articles related to a source article — similar content, citing articles, or references.3 paramsFind articles related to a source article — similar content, citing articles, or references.
pmidstringmaxResultsintegerrelationshipstringsimilar · cited_by · referencesdefault: similarpubmed_spell_checkSpell-check a query and get NCBI's suggested correction. Useful for refining search queries.1 paramsSpell-check a query and get NCBI's suggested correction. Useful for refining search queries.
querystringpubmed_lookup_meshSearch and explore MeSH (Medical Subject Headings) vocabulary. Essential for building precise PubMed queries.3 paramsSearch and explore MeSH (Medical Subject Headings) vocabulary. Essential for building precise PubMed queries.
termstringmaxResultsintegerincludeDetailsbooleanpubmed_lookup_citationLook up PubMed IDs from partial bibliographic citations. Useful when you have a reference (journal, year, volume, page, author) and need the PMID. Uses NCBI ECitMatch for deterministic matching — more reliable than searching by citation fields.1 paramsLook up PubMed IDs from partial bibliographic citations. Useful when you have a reference (journal, year, volume, page, author) and need the PMID. Uses NCBI ECitMatch for deterministic matching — more reliable than searching by citation fields.
citationsarraypubmed_convert_idsConvert between article identifiers (DOI, PMID, PMCID). Accepts up to 50 IDs of a single type per request. Uses the NCBI PMC ID Converter API — only resolves articles indexed in PubMed Central. For articles not in PMC, use pubmed_search_articles instead.2 paramsConvert between article identifiers (DOI, PMID, PMCID). Accepts up to 50 IDs of a single type per request. Uses the NCBI PMC ID Converter API — only resolves articles indexed in PubMed Central. For articles not in PMC, use pubmed_search_articles instead.
idsarrayidtypestringpmcid · pmid · doiPubMed MCP — wraps the NCBI E-utilities API (biomedical literature, free, no auth)
Part of Pipeworx — an MCP gateway connecting AI agents to 881+ live data sources.
| Tool | Description |
|---|
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"pubmed": {
"url": "https://gateway.pipeworx.io/pubmed/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 881+ data sources:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Instead of calling tools directly, you can ask questions in plain English:
ask_pipeworx({ question: "your question about Pubmed data" })
The gateway picks the right tool and fills the arguments automatically.
MIT