GrantConnect (Australia)

live Government

Australian Commonwealth grants — every grant awarded (recipient, ABN, value in AUD, agency, purpose) and every open grant opportunity with its closing date.

6 tools
0ms auth
free tier 50 calls/day

Tools

au_grant_award

Full 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_recipient

Every 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_open

Australian 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_recipients

Rank 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_coverage

What GrantConnect data Pipeworx actually holds right now: per-report ingest windows with their status and row counts, the earliest and latest dates present in the awarded-grants and grant-opportunitie

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.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/grantconnect-au/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
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.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("au_grants_search", {});
ask_pipeworx
// 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");