Science
Data source: NIH Reporter, NSF Awards, CORDIS
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"}}}'
REST API
API Root
https://context.gnist.ai/rest/research-funding/
4 endpoints available:
GET /rest/research-funding/search_grantsGET /rest/research-funding/get_grantGET /rest/research-funding/list_funding_sourcesGET /rest/research-funding/report_feedback
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())
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_grantsSearch for research grants across NIH Reporter, NSF Awards, and EU CORDIS.
| Parameter | Type | Required | Description |
|---|---|---|---|
query | string | required | Search query — keywords, topic, PI name, or institution. |
max_results | integer | optional | Maximum number of results. (default: 10) |
source | any | optional | Filter by source: nih, nsf, cordis. Omit to search all. |
get_grantLook up a specific research grant by its ID.
| Parameter | Type | Required | Description |
|---|---|---|---|
grant_id | string | required | Grant ID (e.g. NIH project number, NSF award ID, or CORDIS reference). |
source | any | optional | Source: nih, nsf, cordis. Specify to avoid searching all sources. |
list_funding_sourcesList all registered research funding data sources and their status.
report_feedbackReport a bug, feature request, or general feedback for this data source.
| Parameter | Type | Required | Description |
|---|---|---|---|
feedback | string | required | |
feedback_type | string | optional | (default: "general") |