nih_funding_concentration

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

Summarize NIH award dollars and record counts by fiscal year, recipient organization, contact PI, activity code, and funding mechanism for a bounded topic, organization, or PI search. Results disclose truncation and represent reported federal obligations—not valuation, revenue, or total research spending.

Parameters

NameTypeRequiredDescription
querystringno
organizationstringno
pi_namestringno
from_fiscal_yearnumberno
to_fiscal_yearnumberno

Example call

Arguments

{
  "query": "gene therapy",
  "from_fiscal_year": 2022,
  "to_fiscal_year": 2026
}

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_concentration","arguments":{"query":"gene therapy","from_fiscal_year":2022,"to_fiscal_year":2026}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('nih_funding_concentration', {
  "query": "gene therapy",
  "from_fiscal_year": 2022,
  "to_fiscal_year": 2026
});

More examples

{
  "organization": "Stanford University",
  "from_fiscal_year": 2024,
  "to_fiscal_year": 2026
}

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