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

NameTypeRequiredDescription
recipient_namestringnoOrganisation name, case-insensitive substring, e.g. “YWCA Canberra”, “Monash University”.
abnstringnoAustralian Business Number, spaced or unspaced. Matched exactly and preferred over recipient_name.
awarded_fromstringnoEarliest publish date, ISO YYYY-MM-DD.
awarded_tostringnoLatest publish date, ISO YYYY-MM-DD.
limitnumber,stringnoMax individual awards listed (1-100, default 25). The totals cover more rows than are listed.
offsetnumber,stringnoRows 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.

Regenerated from source · build July 31, 2026