Grants Finder
Find grants, funding fits, and precedent
Search official grant opportunities across the US, UK, Australia, and Japan, plus UK and EU funding history for precedent research, fit scoring, and watchlist workflows.
Search live and recent grant opportunities across official US, UK, Australian, and Japanese funding sources with filters for geography, applicant type, dates, amount bands, and funders.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "grants-finder",
"skill": "search_opportunities",
"input": {
"query": "artificial intelligence research",
"source": "all",
"regions": [
"US",
"UK",
"JP"
],
"limit": 6
}
}' \
https://api.toolrouter.com/v1/tools/callOpen one canonical grant record so you can inspect the normalized summary, eligibility, deadlines, funding text, related documents, and official source URL.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "grants-finder",
"skill": "opportunity_details",
"input": {
"source": "grants_gov",
"record_id": "361703"
}
}' \
https://api.toolrouter.com/v1/tools/callSearch funded-project and research-grant history across official UKRI and EU CORDIS sources to find precedent awards, funder behavior, and recent program context.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "grants-finder",
"skill": "search_grant_history",
"input": {
"query": "artificial intelligence",
"source": "all",
"regions": [
"UK",
"EU"
],
"limit": 6
}
}' \
https://api.toolrouter.com/v1/tools/callRank live opportunities against an applicant profile using geography, applicant-type fit, keyword and sector relevance, funding need, deadline urgency, and preferred-funder signals.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "grants-finder",
"skill": "match_applicant_profile",
"input": {
"source": "all",
"query": "artificial intelligence",
"regions": [
"UK",
"EU",
"JP"
],
"applicant_types": [
"university",
"research organisation"
],
"sector_keywords": [
"AI",
"machine learning",
"research"
],
"funding_need": 500000,
"limit": 6
}
}' \
https://api.toolrouter.com/v1/tools/callProduce a compact monitoring digest of the most actionable live grant opportunities using urgency, deadline, funding amount, or freshness sorting.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "grants-finder",
"skill": "watchlist_snapshot",
"input": {
"source": "all",
"query": "artificial intelligence",
"sort_by": "urgency",
"limit": 8
}
}' \
https://api.toolrouter.com/v1/tools/callQuick Start
claude mcp add --transport stdio \
--env TOOLROUTER_API_KEY=YOUR_API_KEY \
toolrouter -- npx -y toolrouter-mcpcurl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{"tool":"grants-finder","skill":"search_opportunities","input":{}}' \
https://api.toolrouter.com/v1/tools/call