hkex_ipo_filings
Pack: china-disclosures · Endpoint: https://gateway.pipeworx.io/china-disclosures/mcp
Hong Kong IPO / listing financing filings — the Global Offering prospectus and formal notice every company files with HKEX when it goes public or completes a placement. Answers “recent HK IPOs”, “HKEX biotech IPO financing”, “which companies just listed on the Hong Kong Stock Exchange”, “STAR/HK biotech listing documents”. Sourced from HKEXnews disclosure filings titled “GLOBAL OFFERING” — covers every industry, not biotech-specific, so filter with query (a company name) to find a particular listing. Returns the company, stock code, document category (Listing Documents = the prospectus PDF, or Announcements and Notices = the formal notice for the same event), filing date and PDF link. HKEX Main Board / GEM only — an A-share STAR Market (科创板) IPO is a different exchange, see cninfo_disclosure_search.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | no | Filter to filings whose company name contains this text (e.g. “BIO”, “PHARMA”, or a specific company). |
since | string | no | Earliest filing date, YYYY-MM-DD. Defaults to 90 days ago. Only the current rolling HKEXnews window is reachable — see source_note in the response. |
until | string | no | Latest filing date, YYYY-MM-DD. Defaults to today. |
limit | number | no | Maximum filings to return, 1-40 (default 15). |
Example call
Arguments
{
"limit": 5
}
curl
curl -X POST https://gateway.pipeworx.io/china-disclosures/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"hkex_ipo_filings","arguments":{"limit":5}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('hkex_ipo_filings', {
"limit": 5
});
More examples
{
"query": "TRANSWARP"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"china-disclosures": {
"url": "https://gateway.pipeworx.io/china-disclosures/mcp"
}
}
}
See Getting Started for client-specific install steps.