hkma_dataset

Pack: hkma-hk · Endpoint: https://gateway.pipeworx.io/hkma-hk/mcp

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

Parameters

NameTypeRequiredDescription
pathstringyesEndpoint path after /public/, no leading slash, e.g. “market-data-and-statistics/daily-monetary-statistics/daily-figures-interbank-liquidity”.

Example call

Arguments

{
  "path": "market-data-and-statistics/daily-monetary-statistics/daily-figures-interbank-liquidity"
}

curl

curl -X POST https://gateway.pipeworx.io/hkma-hk/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"hkma_dataset","arguments":{"path":"market-data-and-statistics/daily-monetary-statistics/daily-figures-interbank-liquidity"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('hkma_dataset', {
  "path": "market-data-and-statistics/daily-monetary-statistics/daily-figures-interbank-liquidity"
});

More examples

{
  "path": "market-data-and-statistics/monthly-statistical-bulletin/er-ir/hk-interbank-ir-daily",
  "from": "2024-01-01",
  "to": "2024-03-31"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "hkma-hk": {
      "url": "https://gateway.pipeworx.io/hkma-hk/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 31, 2026