europepmc_publication_integrity_profile
Pack: europepmc · Endpoint: https://gateway.pipeworx.io/europepmc/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/europepmc_publication_integrity_profile for the schema, then POST the same URL with its arguments for the data.
Inspect one Europe PMC article for linked retractions, corrections, errata, expressions of concern, comments, versions, and preprint/published-version metadata. No linked notice means none was found in Europe PMC—not proof the article is free of concerns.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
source | string | yes | |
id | string | yes |
Example call
Arguments
{
"source": "MED",
"id": "27633186"
}
curl
curl -X POST https://gateway.pipeworx.io/europepmc/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"europepmc_publication_integrity_profile","arguments":{"source":"MED","id":"27633186"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('europepmc_publication_integrity_profile', {
"source": "MED",
"id": "27633186"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"europepmc": {
"url": "https://gateway.pipeworx.io/europepmc/mcp"
}
}
}
See Getting Started for client-specific install steps.