taiwan_stock_quote
Pack: taiwan-stocks · Endpoint: https://gateway.pipeworx.io/taiwan-stocks/mcp
Daily close, open, high, low, change, share volume and TWD turnover for Taiwan-listed stocks and ETFs, from the Taiwan Stock Exchange (TWSE, 上市) and Taipei Exchange (TPEx, 上櫃) open data. Accepts the numeric code (2330), the exchange English abbreviation (TSMC) or the Chinese name (台積電). Answers “what did TSMC close at”, “price of 2317”, “how did Taiwanese stocks trade today”.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
symbols | string | yes | One or more Taiwan securities, comma-separated. Codes (2330), English abbreviations (TSMC) and Chinese names (台積電) all resolve. Up to 20 per call. |
Example call
Arguments
{
"symbols": "TSMC,2317"
}
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_stock_quote","arguments":{"symbols":"TSMC,2317"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('taiwan_stock_quote', {
"symbols": "TSMC,2317"
});
More examples
{
"symbols": "2330"
}
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.