nz_tender_detail
Pack: gets-nz · Endpoint: https://gateway.pipeworx.io/gets-nz/mcp
Fetch full detail for a single New Zealand government tender from GETS by its RFx ID (the numeric id from nz_tender_open / nz_tender_search results, e.g. 32705858). Returns tender name, reference number, buying agency, department/business unit, tender type (RFP, RFT, RFQ, etc.), coverage, open and close dates, UNSPSC categories, regions, required pre-qualifications, contact, full overview text, and the human GETS page URL.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | string,number | yes | GETS RFx ID, e.g. “32705858”. |
Example call
Arguments
{
"id": "32705858"
}
curl
curl -X POST https://gateway.pipeworx.io/gets-nz/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"nz_tender_detail","arguments":{"id":"32705858"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('nz_tender_detail', {
"id": "32705858"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"gets-nz": {
"url": "https://gateway.pipeworx.io/gets-nz/mcp"
}
}
}
See Getting Started for client-specific install steps.