taiwan_search_securities
Pack: taiwan-stocks · Endpoint: https://gateway.pipeworx.io/taiwan-stocks/mcp
Find a Taiwan-listed security by company name, English abbreviation or numeric code across both the TWSE main board and the TPEx OTC board. Returns code, Chinese name, English abbreviation, market and sector — the lookup that turns “Foxconn” or “鴻海” into 2317 before pricing it.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | yes | Company name, English abbreviation, or numeric code. Partial matches work. |
market | string | no | Restrict to one board. Default all. |
limit | number | no | Maximum matches to return, 1-100. Default 20. |
Example call
Arguments
{
"query": "TSMC"
}
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_search_securities","arguments":{"query":"TSMC"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('taiwan_search_securities', {
"query": "TSMC"
});
More examples
{
"query": "台積電",
"market": "twse",
"limit": 5
}
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.