Hong Kong Monetary Authority

live Data

Hong Kong Monetary Authority (HKMA) public open API MCP. Keyless.

5 tools
0ms auth
free tier 50 calls/day

Tools

hkma_dataset

Fetch ANY HKMA public dataset by its endpoint path (the part after https://api.hkma.gov.hk/public/).

No parameters required.

Try it
interbank_liquidity

Daily interbank liquidity figures: overnight & 1-month HIBOR, aggregate balance (opening/closing),

No parameters required.

Try it
monetary_base

Daily figures for the components of the Hong Kong Monetary Base: Certificates of Indebtedness,

No parameters required.

Try it
interbank_interest_rates

HKD interbank offered rates (HIBOR) by tenor: overnight, 1-week, 1/3/6/9/12-month, one record per day

No parameters required.

Try it
exchange_rates

HKD market exchange rates vs major currencies (USD, GBP, JPY, CNY, EUR, AUD, CAD, SGD, etc.),

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.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/hkma-hk/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/hkma-hk/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"hkma_dataset","arguments":{}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("hkma_dataset", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("hong kong monetary authority (hkma) public open api mcp");