Taiwan Stocks
live FinanceMarketsTaiwan equities MCP. Keyless.
Tools
taiwan_stock_quote Daily close, open, high, low, change, share volume and TWD turnover for Taiwan-listed stocks and ETFs, from the Taiwan Stock Exchange (TWSE, 上市) and Taipei Exchange (TPEx, 上櫃) open data. Accepts the n
No parameters required.
Try it
taiwan_search_securities 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
No parameters required.
Try it
taiwan_company_profile Corporate profile of a TWSE-listed Taiwanese company from the exchange company master: English abbreviation, sector, chairman and president, incorporation and listing dates, paid-in capital, shares ou
No parameters required.
Try it
taiwan_market_summary 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
No parameters required.
Try it
taiwan_stock_valuation 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 2
No parameters required.
Try it
taiwan_monthly_revenue Monthly sales (月營收) reported by TWSE-listed companies: the month's revenue with month-on-month and year-on-year change, plus year-to-date totals. Taiwan mandates this disclosure by the 10th of the fol
No parameters required.
Try it
taiwan_material_news Mandatory same-day corporate disclosures (重大訊息) filed by TWSE-listed companies: board resolutions, mergers and acquisitions, large asset transactions, litigation, capital raises, name changes. Returns
No parameters required.
Try it
taiwan_top_traded The twenty most heavily traded securities on the Taiwan Stock Exchange in the latest session, ranked by share volume, with each one's open, high, low, close and transaction count. Answers "what is bei
No parameters required.
Try it
taiwan_foreign_holdings How much of the Taiwan stock market foreign and mainland-China investors own, from the TWSE QFII register — either the securities with the highest overseas ownership and their remaining headroom under
No parameters required.
Try it
taiwan_margin_balance Margin financing (融資) and short-sale (融券) balances for a Taiwan-listed stock, with the day's buys, sells, covering and the exchange quota. Rising margin balance means leveraged retail buying; rising s
No parameters required.
Try it
taiwan_ex_dividend_calendar 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
No parameters required.
Try it
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/taiwan-stocks/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' curl -X POST https://gateway.pipeworx.io/taiwan-stocks/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"taiwan_stock_quote","arguments":{}}}' Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("taiwan_stock_quote", {}); // Or ask in plain English:
const answer = await px.ask("taiwan equities mcp");