taiwan_ex_dividend_calendar
Pack: taiwan-stocks · Endpoint: https://gateway.pipeworx.io/taiwan-stocks/mcp
Announced ex-dividend and ex-rights dates for TWSE-listed securities, with the cash dividend per share, stock dividend ratio and any subscription terms. Answers “when does 2330 go ex-dividend”, “which Taiwanese stocks go ex-dividend this month”, “what is the dividend on 2412”.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
symbol | string | no | Restrict to one company by code, English abbreviation or Chinese name. Omit for the full forward calendar. |
limit | number | no | Maximum entries to return, 1-200. Default 30. |
Example call
Arguments
{
"limit": 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_ex_dividend_calendar","arguments":{"limit":3}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('taiwan_ex_dividend_calendar', {
"limit": 3
});
More examples
{
"symbol": "2885"
}
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.