au_get_release
Pack: australia-tenders · Endpoint: https://gateway.pipeworx.io/australia-tenders/mcp
Fetch a single Australian government contract by its OCDS ocid or Contract Notice id (e.g. “CN4240933”) from the official AusTender OCDS API. Because AusTender has no per-id lookup endpoint, you must supply the date window the contract falls in (published/start/end). Returns the fully shaped release: ocid, contract id, title/description, buyer, supplier, value + currency, period, category, procurement method and exemption details, and all key dates.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | string | yes | The OCDS ocid (e.g. “prod-fcd1c039…”) OR the Contract Notice id (e.g. “CN4240933”). |
date_from | string | no | Start of the window the contract falls in, ISO-8601. Defaults to ~30 days ago. |
date_to | string | no | End of the window, ISO-8601. Defaults to now. |
notice_type | string | no | Which date to search on: “contractPublished” (default), “contractLastModified”, “contractStart”, “contractEnd”. |
Example call
Arguments
{
"id": "CN4240933",
"date_from": "2026-05-01",
"date_to": "2026-05-31",
"notice_type": "contractPublished"
}
curl
curl -X POST https://gateway.pipeworx.io/australia-tenders/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"au_get_release","arguments":{"id":"CN4240933","date_from":"2026-05-01","date_to":"2026-05-31","notice_type":"contractPublished"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('au_get_release', {
"id": "CN4240933",
"date_from": "2026-05-01",
"date_to": "2026-05-31",
"notice_type": "contractPublished"
});
More examples
{
"id": "prod-fcd1c039-ae3d-4e1c-9f2a-1234567890ab"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"australia-tenders": {
"url": "https://gateway.pipeworx.io/australia-tenders/mcp"
}
}
}
See Getting Started for client-specific install steps.