nih_grant_award_history

Pack: nih-reporter · Endpoint: https://gateway.pipeworx.io/nih-reporter/mcp

Build the annual NIH award history for one core project number, including award, direct/indirect cost, budget dates, application type, and cumulative reported funding. Annual award amounts are obligations for each fiscal year—not company revenue, cash received, or guaranteed future funding.

Parameters

NameTypeRequiredDescription
core_project_numstringyesCore project number, e.g. R43GM128494 or UG1HD078437.

Example call

Arguments

{
  "core_project_num": "UG1HD078437"
}

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_award_history","arguments":{"core_project_num":"UG1HD078437"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('nih_grant_award_history', {
  "core_project_num": "UG1HD078437"
});

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.

Regenerated from source · build August 3, 2026