nih_grant_publication_summary
Pack: nih-reporter · Endpoint: https://gateway.pipeworx.io/nih-reporter/mcp
Count publications linked by NIH RePORTER to a core project number and return a bounded PMID sample. Publication linkage reflects acknowledged grant support; it is not a citation-impact, product-readiness, or causal-attribution measure.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
core_project_num | string | yes | |
limit | number | no | PMID sample size, 1–100 (default 25). |
Example call
Arguments
{
"core_project_num": "UG1HD078437",
"limit": 25
}
curl
curl -X POST https://gateway.pipeworx.io/nih-reporter/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"nih_grant_publication_summary","arguments":{"core_project_num":"UG1HD078437","limit":25}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('nih_grant_publication_summary', {
"core_project_num": "UG1HD078437",
"limit": 25
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"nih-reporter": {
"url": "https://gateway.pipeworx.io/nih-reporter/mcp"
}
}
}
See Getting Started for client-specific install steps.