nih_funding_expirations
Pack: nih-reporter · Endpoint: https://gateway.pipeworx.io/nih-reporter/mcp
Find active NIH projects matching a topic or organization whose current project period is scheduled to end soon. Treat the end date as a monitoring cue only—it can be extended, renewed, supplemented, or updated and does not prove a funding cliff.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | no | |
organization | string | no | |
days | number | no | Forward window, 30–730 days (default 180). |
limit | number | no | 1–100, default 25. |
Example call
Arguments
{
"organization": "New Echota Biotechnology",
"days": 365
}
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_funding_expirations","arguments":{"organization":"New Echota Biotechnology","days":365}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('nih_funding_expirations', {
"organization": "New Echota Biotechnology",
"days": 365
});
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.