au_grant_award
Pack: grantconnect-au · Endpoint: https://gateway.pipeworx.io/grantconnect-au/mcp
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 program, grant program and activity, the stated purpose, value in AUD, approval/start/end dates, selection process, delivery location, aggregate-grant flags and confidentiality flags — and, when the award records a go_id, the linked grant opportunity is fetched and inlined (title, close date, selection process, category, agency) so the advertised call that produced the payment is visible in the same answer.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
ga_id | string | yes | GrantConnect award id, e.g. “GA572409”. A bare number is accepted and prefixed with GA. |
Example call
Arguments
{
"ga_id": "GA572409"
}
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_grant_award","arguments":{"ga_id":"GA572409"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('au_grant_award', {
"ga_id": "GA572409"
});
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.