GrantConnect (Australia)
liveGovernmentAustralian Commonwealth grants — every grant awarded (recipient, ABN, value in AUD, agency, purpose) and every open grant opportunity with its closing date.
Tools
au_grants_searchSearch awarded Australian Commonwealth government grants from GrantConnect (grants.gov.au) — every grant a federal agency has paid out, with recipient organisation, funding agency, grant program and a
No parameters required.
Try it
au_grant_awardFull record for one awarded Australian Commonwealth grant, looked up by its GrantConnect award id (ga_id, e.g. "GA572409"). Returns recipient organisation with ABN and address, funding agency, PBS pro
No parameters required.
Try it
au_grants_by_recipientEvery Australian Commonwealth grant awarded to one organisation, matched by recipient name substring or by exact Australian Business Number (ABN, accepted spaced as "48 008 389 151" or unspaced as "48
No parameters required.
Try it
au_grant_opportunities_openAustralian Commonwealth grant opportunities that are still open for application — GrantConnect opportunities whose close date is in the future, soonest-closing first, with days remaining computed at r
No parameters required.
Try it
au_grants_top_recipientsRank the organisations that received the most Australian Commonwealth grant money, by total AUD awarded, with award counts and the agencies that funded them. Filter by agency, category, recipient_stat
No parameters required.
Try it
grantconnect_coverageWhich GrantConnect data is available right now: per-report ingest windows with their status and row counts, the earliest and latest dates present in the awarded-grants and grant-opportunities tables,
No parameters required.
Try it
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/grantconnect-au/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'curl -X POST https://gateway.pipeworx.io/grantconnect-au/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"au_grants_search","arguments":{}}}'Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("au_grants_search", {});// Or ask in plain English:
const answer = await px.ask("australian commonwealth grants — every grant awarded (recipient, abn, value in aud, agency, purpose) and every open grant opportunity with its closing date");