macau_fx_rates

Pack: macau-amcm · Endpoint: https://gateway.pipeworx.io/macau-amcm/mcp

Daily interbank mid exchange rates for the Macau pataca (MOP / 澳門元) against ~17 currencies (USD, HKD, CNY, EUR, GBP, JPY, KRW, SGD, TWD, AUD, CHF and more), from AMCM, the Monetary Authority of Macao (澳門金融管理局). Returns one dated row per currency per Macau business day with mop_per_unit (MOP per unit — the headline rate; MOP is pegged to HKD at ~1.03) and the currency’s own conventional market_quote. Defaults to the last 7 days ending on the most recent published date; pass begin/end (YYYY-MM-DD, up to ~1 year per call) for history and currency (e.g. “CNY” or “USD,HKD,CNY”) to filter. Answers “MOP to USD exchange rate”, “Macau pataca vs RMB last week”, “澳門元匯率”.

Parameters

NameTypeRequiredDescription
beginstringnoStart date, YYYY-MM-DD (or YYYYMMDD). Default: 6 days before end.
endstringnoEnd date, YYYY-MM-DD. Default: AMCM’s most recent published date.
currencystringnoOptional ISO currency code(s) to filter, comma-separated, e.g. “CNY” or “USD,HKD,EUR”.

Example call

Arguments

{}

curl

curl -X POST https://gateway.pipeworx.io/macau-amcm/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"macau_fx_rates","arguments":{}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('macau_fx_rates', {});

More examples

{
  "begin": "2026-09-01",
  "end": "2026-09-07",
  "currency": "USD,HKD,CNY"
}

Connect

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

{
  "mcpServers": {
    "macau-amcm": {
      "url": "https://gateway.pipeworx.io/macau-amcm/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 8, 2026