taiwan_search_by_company

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

Search Taiwan government procurement tenders (政府電子採購網 / PCC) by company / vendor name — finds tenders a company bid on or was awarded (得標/投標廠商), via the g0v community mirror. Pass a company name in Chinese (e.g. “台積電”, “中華電信”). Returns matching tenders with tender id, title, agency, date, and the associated company names/IDs. Third-party mirror; results are best-effort.

Parameters

NameTypeRequiredDescription
querystringyesCompany / vendor name, typically Chinese, e.g. “中華電信”.
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_by_company","arguments":{"query":"台積電"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('taiwan_search_by_company', {
  "query": "台積電"
});

More examples

{
  "query": "中華電信",
  "page": 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.

Regenerated from source · build August 15, 2026