macau_monia
Pack: macau-amcm · Endpoint: https://gateway.pipeworx.io/macau-amcm/mcp
MONIA — the MOP Overnight Index Average (澳門元隔夜平均指數), Macau’s overnight interbank reference rate in percent, published each Macau business day by AMCM, the Monetary Authority of Macao. The MOP equivalent of SOFR/HONIA for pricing pataca-denominated instruments. Defaults to the last 7 days ending on the most recent fixing; pass begin/end (YYYY-MM-DD, up to ~1 year per call) for history. Answers “Macau overnight interbank rate”, “MONIA rate today”, “MOP reference rate history”.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
begin | string | no | Start date, YYYY-MM-DD (or YYYYMMDD). Default: 6 days before end. |
end | string | no | End date, YYYY-MM-DD. Default: the most recent MONIA fixing date. |
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_monia","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('macau_monia', {});
More examples
{
"begin": "2026-08-25",
"end": "2026-09-07"
}
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.