taiwan_stock_valuation
Pack: taiwan-stocks · Endpoint: https://gateway.pipeworx.io/taiwan-stocks/mcp
Price-to-earnings ratio, dividend yield and price-to-book for Taiwan-listed shares, as published daily by TWSE and TPEx. Answers “what is TSMC trading at in P/E terms”, “dividend yield on 2412”, “is 2330 expensive”.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
symbols | string | yes | One or more Taiwan securities, comma-separated. Codes, English abbreviations and Chinese names all resolve. Up to 20 per call. |
Example call
Arguments
{
"symbols": "2330,2412"
}
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_valuation","arguments":{"symbols":"2330,2412"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('taiwan_stock_valuation', {
"symbols": "2330,2412"
});
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.