taiwan_material_news
Pack: taiwan-stocks · Endpoint: https://gateway.pipeworx.io/taiwan-stocks/mcp
Mandatory same-day corporate disclosures (重大訊息) filed by TWSE-listed companies: board resolutions, mergers and acquisitions, large asset transactions, litigation, capital raises, name changes. Returns the filing company, timestamp, subject line and full statement text. Answers “what did Taiwanese companies announce today”, “any TSMC announcements”.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
symbol | string | no | Restrict to one company by code, English abbreviation or Chinese name. |
query | string | no | Keyword to match in the subject, statement text or company name (Chinese). |
limit | number | no | Maximum announcements to return, 1-100. Default 20. |
Example call
Arguments
{
"limit": 2
}
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_material_news","arguments":{"limit":2}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('taiwan_material_news', {
"limit": 2
});
More examples
{
"symbol": "2330",
"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.