GnistAI GnistAI
Log in

NIH RePORTER

Search 2.9M+ NIH-funded research projects — $50B+/year across all scientific disciplines. Project details, investigators, funding amounts, abstracts, and linked publications.

Overview   |   MCP Docs   |   API Docs   |   OpenAPI   |   Playground   |   Tutorial   |   Toolkits   |   Home
status: healthy status status healthy healthy tools: 5 tools tools 5 5 Science

Data source: NIH RePORTER API

MCP MCP Protocol

Endpoint https://context.gnist.ai/mcp/nih-reporter/
claude_desktop_config.json
{
  "mcpServers": {
    "gnist-nih-reporter": {
      "url": "https://context.gnist.ai/mcp/nih-reporter/",
      "headers": {
        "Gnist-API-Key": "YOUR_API_KEY"
      }
    }
  }
}
Shell
curl -X POST "https://context.gnist.ai/mcp/nih-reporter/" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -H "Gnist-API-Key: YOUR_API_KEY" \
  -d '{"jsonrpc": "2.0", "method": "tools/call", "id": 1, "params": {"name": "search_projects", "arguments": {"query": "example"}}}'

API REST API

API Root https://context.gnist.ai/rest/nih-reporter/

5 endpoints available:

Shell
curl "https://context.gnist.ai/rest/nih-reporter/search_projects?query=example" \
  -H "Gnist-API-Key: YOUR_API_KEY"
Python
import httpx

resp = httpx.get(
    "https://context.gnist.ai/rest/nih-reporter/search_projects",
    headers={"Gnist-API-Key": "YOUR_API_KEY"},
    params={
        "query": "example"
},
)
print(resp.json())

OpenAPI Spec  ·  Full API Docs

CLI Command Line

Command gc nih-reporter

CLI documentation will be available when the GnistAI SDK is published.

Install
pip install gnistai

Available Tools (5)

search_projects
Search NIH-funded research projects across all NIH institutes.
ParameterTypeRequiredDescription
querystringrequiredSearch term for NIH-funded projects (e.g. "cancer immunotherapy", "CRISPR gene editing", "Alzheimer biomarkers").
fiscal_yearsanyoptionalFiscal years to filter by (e.g. [2023, 2024]). Omit for all years.
org_namesanyoptionalOrganization names to filter by (e.g. ["Harvard", "MIT"]).
pi_nameanyoptionalPrincipal investigator name to filter by.
activity_codesanyoptionalNIH activity codes (e.g. ["R01", "R21", "U01"]). R01=standard research, R21=exploratory, K=career development, U=cooperative agreement, P=program project.
limitintegeroptionalNumber of results (1–50, default 20). (default: 20)
get_project
Get detailed information about a specific NIH-funded project.
ParameterTypeRequiredDescription
project_numstringrequiredNIH project number (e.g. "R01CA227622", "5R01AI123456-03"). Found in search_projects results.
get_publications
Get PubMed publications linked to an NIH-funded project.
ParameterTypeRequiredDescription
project_numstringrequiredNIH core project number (e.g. "R01CA227622"). Found in search_projects results.
limitintegeroptionalNumber of results (1–50, default 20). (default: 20)
get_funding_trends
Track NIH funding trends for a research topic across fiscal years.
ParameterTypeRequiredDescription
querystringrequiredResearch topic to track funding for (e.g. "machine learning", "mRNA vaccines", "climate health").
fiscal_yearslist[integer]requiredFiscal years to compare (e.g. [2020, 2021, 2022, 2023, 2024]). Minimum 1, maximum 20.
report_feedback
Report a bug, feature request, or general feedback for this data source.
ParameterTypeRequiredDescription
feedbackstringrequired
feedback_typestringoptional (default: "general")

Related