europepmc_citation_velocity
Pack: europepmc · Endpoint: https://gateway.pipeworx.io/europepmc/mcp
Aggregate Europe PMC citing-publication records by year for one article and return a recent citation sample. Coverage is Europe PMC’s citation graph, so counts are a floor and citation volume is not evidence quality, replication, or endorsement.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
source | string | yes | |
id | string | yes | |
limit | number | no | Citing records analyzed, 1–500 (default 250). |
Example call
Arguments
{
"source": "MED",
"id": "27633186",
"limit": 250
}
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_citation_velocity","arguments":{"source":"MED","id":"27633186","limit":250}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('europepmc_citation_velocity', {
"source": "MED",
"id": "27633186",
"limit": 250
});
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.