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
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":{}}}'
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.