au_grant_opportunities_open
Pack: grantconnect-au · Endpoint: https://gateway.pipeworx.io/grantconnect-au/mcp
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 request time. Each row carries go_id, title, funding agency, selection process, publish and close dates, primary and secondary category, contact email, addenda count and co-sponsor. Filter by category (e.g. “Regional Development”), agency substring, or free-text title match. Answers “what Australian federal grants can I still apply for, and when do they close”.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | no | Free text matched case-insensitively against the opportunity title. |
agency | string | no | Funding agency, substring match, e.g. “Infrastructure”, “Department of Health”. |
category | string | no | Category title, substring match against the primary or secondary category, e.g. “Regional Development”. |
closing_within_days | number,string | no | Only opportunities closing within this many days from now. |
limit | number,string | no | Max opportunities (1-100, default 25). |
offset | number,string | no | Rows to skip, for paging (default 0). |
Example call
Arguments
{
"category": "Regional Development",
"limit": 10
}
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_opportunities_open","arguments":{"category":"Regional Development","limit":10}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('au_grant_opportunities_open', {
"category": "Regional Development",
"limit": 10
});
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.