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   |   REST API   |   OpenAPI   |   CLI   |   Tutorial   |   Toolkits   |   Home
status: healthy status status healthy healthy tools: 4 tools tools 4 4 type: api wrapper type type api wrapper api wrapper lifecycle: maintained lifecycle lifecycle maintained maintained Science

Data source: NSF Award API

MCP Endpoint (Streamable HTTP) https://context.gnist.ai/mcp/nsf-awards/
Authentication

All requests require a Gnist-API-Key header (or api_key query parameter).

Free tier: 100 calls/day. Get your API key.

Tools (4)

search_awards

Search NSF research awards and grants by keyword.

Covers all NSF-funded research across science, engineering, and education.
Includes award details, principal investigators, institutions, and funding amounts.

Returns:
List of matching awards with title, PI, institution, funding amount, and abstract excerpt.
Use award id with get_award for full details.

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)
JSON-RPC Request
{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "id": 1,
  "params": {
    "name": "search_awards",
    "arguments": {
      "keyword": "example"
    }
  }
}
get_award

Get detailed information about a specific NSF award.

Returns the full award record including abstract, PI, institution, funding,
and program information. Use the id from search_awards results.

Returns:
Award details with abstract, PI, institution, funding amount, dates,
and program info. Returns found=false if award not found.

ParameterTypeRequiredDescription
award_idstringrequiredNSF award ID (e.g. "2548201"). Found in search_awards results.
JSON-RPC Request
{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "id": 1,
  "params": {
    "name": "get_award",
    "arguments": {
      "award_id": "example"
    }
  }
}
search_by_pi

Search NSF awards by principal investigator name.

Find all NSF grants awarded to a specific researcher. Optionally filter
by keyword to narrow to a research area.

Returns:
List of awards for the specified PI with title, institution, funding, and dates.

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)
JSON-RPC Request
{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "id": 1,
  "params": {
    "name": "search_by_pi",
    "arguments": {
      "pi_last_name": "example"
    }
  }
}
report_feedback

Report a bug, feature request, or general feedback for this data source.

Use this when something doesn't work as expected, when you'd like
a new feature, or when you have suggestions for improvement.

Args:
feedback: Describe the issue or suggestion.
feedback_type: One of 'bug', 'feature_request', or 'general'.

ParameterTypeRequiredDescription
feedbackstringrequired
feedback_typestringoptional (default: "general")
JSON-RPC Request
{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "id": 1,
  "params": {
    "name": "report_feedback",
    "arguments": {
      "feedback": "example"
    }
  }
}

Quick Start

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"}}}'
Python
import httpx

resp = httpx.post(
    "https://context.gnist.ai/mcp/nsf-awards/",
    headers={"Gnist-API-Key": "YOUR_API_KEY", "Content-Type": "application/json"},
    json={
  "jsonrpc": "2.0",
  "method": "tools/call",
  "id": 1,
  "params": {
    "name": "search_awards",
    "arguments": {
      "keyword": "example"
    }
  }
},
)
print(resp.json())

Related Toolkits (Science)

Resources