get_full_text

Pack: pubmed · Endpoint: https://gateway.pipeworx.io/pubmed/mcp

Fetch the FULL TEXT of a biomedical paper from PubMed Central (the open-access subset) by PubMed ID. PREFER OVER get_abstract when you need methods/results/discussion, not just the abstract — “read the full paper”, “what methods did use”, “extract details from the paper”. Resolves the PMID to its PMC id and returns the article body text (capped ~40k chars). Only open-access articles are in PMC — returns has_full_text:false (use get_abstract) otherwise.

Parameters

NameTypeRequiredDescription
pmidstringyesPubMed ID (e.g. “34265844”) or a PMC id (“PMC8371605”).

Example call

Arguments

{
  "pmid": "34265844"
}

curl

curl -X POST https://gateway.pipeworx.io/pubmed/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_full_text","arguments":{"pmid":"34265844"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('get_full_text', {
  "pmid": "34265844"
});

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "pubmed": {
      "url": "https://gateway.pipeworx.io/pubmed/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 7, 2026