GnistAI GnistAI
Log in

NSF Awards

Search NSF research awards and grants — keyword search, PI lookup, institution filtering. Covers all NSF-funded research across science, engineering, and education.

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: NSF Award API

MCP MCP Protocol

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

API REST API

API Root https://context.gnist.ai/rest/nsf-awards/

4 endpoints available:

Shell
curl "https://context.gnist.ai/rest/nsf-awards/search_awards?keyword=example" \
  -H "Gnist-API-Key: YOUR_API_KEY"
Python
import httpx

resp = httpx.get(
    "https://context.gnist.ai/rest/nsf-awards/search_awards",
    headers={"Gnist-API-Key": "YOUR_API_KEY"},
    params={
        "keyword": "example"
},
)
print(resp.json())

OpenAPI Spec  ·  Full API Docs

CLI Command Line

Command gc nsf-awards

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

Install
pip install gnistai

Available Tools (4)

search_awards
Search NSF research awards and grants by keyword.
ParameterTypeRequiredDescription
keywordstringrequiredSearch term for NSF awards (e.g. "machine learning", "climate change", "quantum computing").
awardee_nameanyoptionalInstitution name to filter by (e.g. "MIT", "Stanford University").
start_date_startanyoptionalFilter awards starting after this date (MM/DD/YYYY format).
start_date_endanyoptionalFilter awards starting before this date (MM/DD/YYYY format).
limitintegeroptionalNumber of results (1–25, default 25). (default: 25)
get_award
Get detailed information about a specific NSF award.
ParameterTypeRequiredDescription
award_idstringrequiredNSF award ID (e.g. "2548201"). Found in search_awards results.
search_by_pi
Search NSF awards by principal investigator name.
ParameterTypeRequiredDescription
pi_last_namestringrequiredPrincipal investigator's last name.
pi_first_nameanyoptionalPrincipal investigator's first name (optional, narrows results).
keywordanyoptionalOptional keyword to further filter results.
limitintegeroptionalNumber of results (1–25, default 25). (default: 25)
report_feedback
Report a bug, feature request, or general feedback for this data source.
ParameterTypeRequiredDescription
feedbackstringrequired
feedback_typestringoptional (default: "general")

Related