taiwan_monthly_revenue

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

Monthly sales (月營收) reported by TWSE-listed companies: the month’s revenue with month-on-month and year-on-year change, plus year-to-date totals. Taiwan mandates this disclosure by the 10th of the following month, so it is the earliest read on semiconductor and electronics demand anywhere. Pass a company for its own filing, or a sector to rank companies by revenue growth.

Parameters

NameTypeRequiredDescription
symbolstringnoCompany code, English abbreviation or Chinese name. Omit to rank companies instead.
industrystringnoSector to rank within, e.g. “Semiconductor”, “Shipping & Transportation”. Omit for the whole market.
limitnumbernoHow many companies to return when ranking, 1-100. Default 20.

Example call

Arguments

{
  "symbol": "2330"
}

curl

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

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('taiwan_monthly_revenue', {
  "symbol": "2330"
});

More examples

{
  "industry": "Semiconductor",
  "limit": 3
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build August 21, 2026