taiwan_get_tender
Pack: taiwan-procurement · Endpoint: https://gateway.pipeworx.io/taiwan-procurement/mcp
Get full detail for one Taiwan government procurement tender (政府電子採購網 / PCC) via the g0v community mirror. Requires unit_id (機關代碼) and job_number (標案案號), both from a taiwan_search_tenders result. Returns agency contact info, procurement category, budget/award amount, deadlines, and status where available, plus a link to the official PCC page. Third-party mirror; some fields may be blank.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
unit_id | string | yes | Agency unit id (機關代碼), e.g. “3.76.49.2”. From a search result. |
job_number | string | yes | Tender job/case number (標案案號), e.g. “c11511-1”. From a search result. |
Example call
Arguments
{
"unit_id": "3.76.49.2",
"job_number": "c11511-1"
}
curl
curl -X POST https://gateway.pipeworx.io/taiwan-procurement/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"taiwan_get_tender","arguments":{"unit_id":"3.76.49.2","job_number":"c11511-1"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('taiwan_get_tender', {
"unit_id": "3.76.49.2",
"job_number": "c11511-1"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"taiwan-procurement": {
"url": "https://gateway.pipeworx.io/taiwan-procurement/mcp"
}
}
}
See Getting Started for client-specific install steps.