HKEx Filings
Live HKEx (Hong Kong Stock Exchange) regulatory filings for AI agents.
One-Click Install
Add this to your `claude_desktop_config.json` file:
{
"mcpServers": {
"hkex-filings": {
"url": "https://hkex-listco-updates.ascent-partners.com/api/mcp"
}
}
}Remote endpoints
https://hkex-listco-updates.ascent-partners.com/api/mcpstreamable-httpTool inventory
Tools (3)
🟢get_server_info
Report this live gateway's version, transport, and hard limits. Reads nothing.
Input Schema
{
"type": "object",
"properties": {},
"required": [],
"additionalProperties": false
}🟢search_filings(from_date, to_date, stock_code, max_results)
Search live HKEx filings in a date window (at most 31 days). ``from_date``/``to_date`` accept YYYY-MM-DD or DD/MM/YYYY. When ``stock_code`` is set, results are filtered to that code (e.g. ``01461`` or ``1461``). ``max_results`` caps the number of filings fetched and returned (hard cap 200). Returns the parsed filings plus the HKEx-reported total for the window.
Input Schema
{
"type": "object",
"properties": {
"from_date": {
"type": "string",
"description": "YYYY-MM-DD or DD/MM/YYYY"
},
"to_date": {
"type": "string",
"description": "YYYY-MM-DD or DD/MM/YYYY"
},
"stock_code": {
"type": "string",
"description": "Optional HKEx stock code"
},
"max_results": {
"type": "integer",
"minimum": 1,
"maximum": 200
}
},
"required": [
"from_date",
"to_date"
],
"additionalProperties": false
}🟡get_filing(link, extract)
Download one HKEx document by its URL and extract its text and tables. ``link`` must be an HKEx document URL (host ``www1.hkexnews.hk``); any other host is rejected. With ``extract=True`` the response includes extracted ``document_text`` (truncated) and up to 30 ``tables``; set ``extract=False`` for size/content-type only.
Input Schema
{
"type": "object",
"properties": {
"link": {
"type": "string",
"description": "HKEx document URL"
},
"extract": {
"type": "boolean",
"description": "Extract text and tables"
}
},
"required": [
"link"
],
"additionalProperties": false
}