taiwan_market_summary
Pack: taiwan-stocks · Endpoint: https://gateway.pipeworx.io/taiwan-stocks/mcp
Daily level and change of the TAIEX (發行量加權股價指數, the Taiwan Stock Exchange benchmark) and the TPEx OTC index, with total market turnover, share volume and transaction count per session. Answers “where did the TAIEX close”, “how is the Taiwan stock market doing”, “Taiwan market turnover this week”.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
days | number | no | How many recent trading sessions to return, 1-30. Default 5. |
Example call
Arguments
{
"days": 3
}
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_market_summary","arguments":{"days":3}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('taiwan_market_summary', {
"days": 3
});
More examples
{}
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.