pubmed_integrity_check
Pack: pubmed · Endpoint: https://gateway.pipeworx.io/pubmed/mcp
Check one PubMed citation for NLM-indexed retraction, expression-of-concern, erratum, update, duplicate-publication, and republished-article links. Use before relying on a specific PMID in diligence or evidence synthesis. Reports only relationships present in PubMed; absence of a flag is not an independent validation of the paper.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
pmid | string | yes | A single numeric PubMed ID. |
Example call
Arguments
{
"pmid": "30422313"
}
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":"pubmed_integrity_check","arguments":{"pmid":"30422313"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('pubmed_integrity_check', {
"pmid": "30422313"
});
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.