GnistAI GnistAI
Log in

Research Funding

Discover research grants from NIH, NSF, and EU CORDIS. Find who's funding what in your field across US and European science agencies.

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

Data source: NIH Reporter, NSF Awards, CORDIS

MCP MCP Protocol

Endpoint https://context.gnist.ai/mcp/research-funding/
claude_desktop_config.json
{
  "mcpServers": {
    "gnist-research-funding": {
      "url": "https://context.gnist.ai/mcp/research-funding/",
      "headers": {
        "Gnist-API-Key": "YOUR_API_KEY"
      }
    }
  }
}
Shell
curl -X POST "https://context.gnist.ai/mcp/research-funding/" \
  -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_grants", "arguments": {"query": "example"}}}'

API REST API

API Root https://context.gnist.ai/rest/research-funding/

4 endpoints available:

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

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

OpenAPI Spec  ·  Full API Docs

CLI Command Line

Command gc research-funding

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

Install
pip install gnistai

Available Tools (4)

search_grants
Search for research grants across NIH Reporter, NSF Awards, and EU CORDIS.
ParameterTypeRequiredDescription
querystringrequiredSearch query — keywords, topic, PI name, or institution.
max_resultsintegeroptionalMaximum number of results. (default: 10)
sourceanyoptionalFilter by source: nih, nsf, cordis. Omit to search all.
get_grant
Look up a specific research grant by its ID.
ParameterTypeRequiredDescription
grant_idstringrequiredGrant ID (e.g. NIH project number, NSF award ID, or CORDIS reference).
sourceanyoptionalSource: nih, nsf, cordis. Specify to avoid searching all sources.
list_funding_sources
List all registered research funding data sources and their status.
report_feedback
Report a bug, feature request, or general feedback for this data source.
ParameterTypeRequiredDescription
feedbackstringrequired
feedback_typestringoptional (default: "general")

Related