nih_new_grant_awards
Pack: nih-reporter · Endpoint: https://gateway.pipeworx.io/nih-reporter/mcp
Find recently issued NIH awards, optionally restricted to new competing applications, topic, organization, state, institute, activity code, or SBIR/STTR. Useful for financing and emerging-program monitoring; an award notice does not establish commercial validation or future funding.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
days | number | no | Look-back window, 1–365 days (default 30). |
query | string | no | Topic text across title, abstract, and terms. |
organization | string | no | |
state | string | no | |
ic | string | no | |
activity_code | string | no | NIH activity code such as R01, R43, or U01. |
sbir_sttr_only | boolean | no | Restrict to SBIR/STTR research projects. |
new_competing_only | boolean | no | Restrict to application type 1 (default true). |
limit | number | no | 1–100, default 25. |
Example call
Arguments
{
"days": 90,
"query": "gene therapy",
"new_competing_only": true
}
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_new_grant_awards","arguments":{"days":90,"query":"gene therapy","new_competing_only":true}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('nih_new_grant_awards', {
"days": 90,
"query": "gene therapy",
"new_competing_only": true
});
More examples
{
"days": 180,
"sbir_sttr_only": true,
"activity_code": "R43",
"limit": 50
}
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.