twcompany_by_ban

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

No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/twcompany_by_ban for the schema, then POST the same URL with its arguments for the data.

Full registration record for one Taiwanese company by its 統一編號 (8-digit Business Administration Number, the id printed on every Taiwanese invoice and used in government tender awards). Returns registered name, responsible person, authorised and paid-in capital, par value, registered address, registering authority, incorporation date and the date of the most recent registered amendment — sourced from Taiwan’s Ministry of Economic Affairs company register. AUTHORITATIVE for resolving a Taiwanese tax/company number to the entity behind it.

Parameters

NameTypeRequiredDescription
banstringyesThe 8-digit 統一編號 / Business Administration Number, e.g. 22099131 (TSMC).

Example call

Arguments

{
  "ban": "22099131"
}

curl

curl -X POST https://gateway.pipeworx.io/taiwan-companies/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"twcompany_by_ban","arguments":{"ban":"22099131"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('twcompany_by_ban', {
  "ban": "22099131"
});

More examples

{
  "ban": "04541302"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "taiwan-companies": {
      "url": "https://gateway.pipeworx.io/taiwan-companies/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 18, 2026