taiwan_search_tenders

Pack: taiwan-procurement · Endpoint: https://gateway.pipeworx.io/taiwan-procurement/mcp

Search Taiwan government procurement tenders (政府電子採購網 / PCC) by title keyword, via the g0v community mirror. Pass a keyword (Chinese or English, e.g. “電腦”, “AI”, “消防”). Returns matching tenders with tender id (unit_id + job_number), title, agency (機關名稱), announcement type, date, and category. Use taiwan_get_tender with a result’s unit_id + job_number for full detail. Third-party mirror; results are best-effort.

Parameters

NameTypeRequiredDescription
querystringyesTitle keyword to search, e.g. “電腦” (computer), “消防” (fire safety), “AI”.
pagenumber,stringnoResult page (1-based). Defaults to 1.

Example call

Arguments

{
  "query": "電腦"
}

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_search_tenders","arguments":{"query":"電腦"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('taiwan_search_tenders', {
  "query": "電腦"
});

More examples

{
  "query": "消防",
  "page": 2
}

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.

Regenerated from source · build August 15, 2026