Search US grants + federal contracts (Grants.gov + SAM.gov) from any LLM.
MCPpedia last refreshed this data
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"io-github-bch1212-mcp-grantiq": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A paid MCP server that gives AI agents instant, structured access to every open US federal grant and contract opportunity. Backed by Grants.gov + SAM.gov, with 24-hour SQLite caching, per-key daily limits, and a Stripe-friendly upgrade hook.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in other
Compress tool outputs, logs, files, and RAG chunks before they reach the LLM. 60-95% fewer tokens, same answers. Library, proxy, MCP server.
Pi Coding Agent extension (CLI-first) — routes bash/read/grep/find/ls through lean-ctx CLI for strong token savings. Optional MCP bridge can register advanced tools.
One local source for the MCP servers, tools, and memory your AI coding agents share, synced into each tool's native config with a review gate and a receipt for every change. No daemon, no lock-in.
97% token reduction for AI coding sessions — zero deps, 21 languages, MCP server
MCP Security Weekly
Get CVE alerts and security updates for io.github.bch1212/mcp-grantiq and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A paid MCP server that gives AI agents instant, structured access to every open US federal grant and contract opportunity. Backed by Grants.gov + SAM.gov, with 24-hour SQLite caching, per-key daily limits, and a Stripe-friendly upgrade hook.
https://mcp-grantiq.up.railway.app/mcp
Title: GrantIQ MCP — US Federal Grants & Contracts for AI Agents
Subtitle: Search, match, and monitor every open SAM.gov and Grants.gov opportunity from any LLM, in one tool call.
GrantIQ MCP turns the messy world of US government funding into a clean, agent-ready API. Eight typed tools cover everything from broad keyword search and NAICS-coded contract discovery to deadline radar and historical award lookups. Responses are normalized across both data sources, returned as plain JSON, and cached for 24 hours so repeat queries don't burn rate limit on the upstream agencies.
Built for procurement copilots, grant-finder agents, and B2G sales tools, GrantIQ MCP ships with a free tier (50 calls/day) that any developer can drop into Claude or Cursor in 15 seconds. Upgrade to Pro for $19/mo for unlimited calls, or pay $0.02 per call for bursty workloads — billing flips a key from free to pro via a single webhook, with no app rewrites required.
| Tier | Price | Limit |
|---|---|---|
| Free | $0 | 50 calls / day / key |
| Pro | $19 / month | Unlimited |
| Pay-as-you-go | $0.02 / call | Unlimited |
claude mcp add grantiq-mcp --url https://mcp-grantiq.up.railway.app/mcp
Then add the API key Claude should use:
claude mcp env grantiq-mcp X-API-Key=grantiq-dev-key-001
The dev key grantiq-dev-key-001 is seeded automatically and capped at 50 calls/day. Mint your own with the admin endpoint below.
| Tool | Args | Returns |
|---|---|---|
search_grants | keyword, agency, amount_min, amount_max, status, limit | List of matching grants |
get_grant_details | opportunity_id | Full grant object |
search_contracts | keyword, naics_code, agency, set_aside, limit | List of SAM contracts |
get_contract_details | notice_id | Full contract object |
match_opportunities | org_description, org_type, focus_areas | Top 10 matched opps (grants + contracts) |
get_agencies | type (grants / contracts / both) | Agencies with open opps, ranked by volume |
get_deadlines | days_ahead | Opportunities closing within N days |
search_awards | recipient_name, agency, year | Past SAM award history |
Every tool returns either:
{ "success": true, "cached": false, "data": { ... } }
or, on failure:
{ "success": false, "error": "..." }
When the daily limit is hit, the HTTP layer returns 429 with body:
{ "error": "Limit reached. Upgrade at mcpize.com/grantiq-mcp" }
The MCP endpoint speaks the JSON-RPC streamable-HTTP protocol and is best used through an MCP client. For convenience, every tool also has a REST mirror at /tools/<tool>.
# Search grants
curl -s https://mcp-grantiq.up.railway.app/tools/search_grants \
-H 'Content-Type: application/json' \
-H 'X-API-Key: grantiq-dev-key-001' \
-d '{"keyword":"renewable energy","limit":5}'
# Get grant details
curl -s https://mcp-grantiq.up.railway.app/tools/get_grant_details \
-H 'Content-Type: application/json' \
-H 'X-API-Key: grantiq-dev-key-001' \
-d '{"opportunity_id":"345678"}'
# Search SAM.gov contracts (cyber, small-business set-aside)
curl -s https://mcp-grantiq.up.railway.app/tools/search_contracts \
-H 'Content-Type: application/json' \
-H 'X-API-Key: grantiq-dev-key-001' \
-d '{"keyword":"cybersecurity","set_aside":"SBA","limit":5}'
# Get contract details
curl -s https://mcp-grantiq.up.railway.app/tools/get_contract_details \
-H 'Content-Type: application/json' \
-H 'X-API-Key: grantiq-dev-key-001'
... [View full README on GitHub](https://github.com/bch1212/mcp-grantiq#readme)