au_grants_by_recipient
Pack: grantconnect-au · Endpoint: https://gateway.pipeworx.io/grantconnect-au/mcp
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 “48008389151”). Returns the individual awards plus a funding total: total AUD received, number of awards, first and last award dates, and a per-agency breakdown of which departments funded them. Answers “how much Commonwealth grant money has this charity, university, council or company received, and from whom”.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
recipient_name | string | no | Organisation name, case-insensitive substring, e.g. “YWCA Canberra”, “Monash University”. |
abn | string | no | Australian Business Number, spaced or unspaced. Matched exactly and preferred over recipient_name. |
awarded_from | string | no | Earliest publish date, ISO YYYY-MM-DD. |
awarded_to | string | no | Latest publish date, ISO YYYY-MM-DD. |
limit | number,string | no | Max individual awards listed (1-100, default 25). The totals cover more rows than are listed. |
offset | number,string | no | Rows to skip in the listed awards (default 0). |
Example call
Arguments
{
"recipient_name": "YWCA Canberra",
"limit": 20
}
curl
curl -X POST https://gateway.pipeworx.io/grantconnect-au/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"au_grants_by_recipient","arguments":{"recipient_name":"YWCA Canberra","limit":20}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('au_grants_by_recipient', {
"recipient_name": "YWCA Canberra",
"limit": 20
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"grantconnect-au": {
"url": "https://gateway.pipeworx.io/grantconnect-au/mcp"
}
}
}
See Getting Started for client-specific install steps.