twcompany_status

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_status for the schema, then POST the same URL with its arguments for the data.

Current legal standing of a Taiwanese company by 統一編號 — whether it is still registered, dissolved, revoked, or in a declared suspension of business — with every register date converted from Minguo (ROC) era to ISO. Answers “is this Taiwanese counterparty still a going concern on the register”, which the raw record leaves in six separate era-coded fields. Sourced from the Ministry of Economic Affairs company register.

Parameters

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

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_status","arguments":{"ban":"22099131"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('twcompany_status', {
  "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