nbu_international_reserves
Pack: nbu-ua · Endpoint: https://gateway.pipeworx.io/nbu-ua/mcp
NBU official international (reserve) assets for a given month, broken down by component. Each record: {dt (YYYYMMDD), txt (Ukrainian name), txten (English name), id_api, value, freq}. date selects the reference month; omit for the latest available month.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
date | string | no | Reference day inside the month, YYYYMMDD, e.g. “20240101”. Omit for latest. |
Example call
Arguments
{
"date": "20240115"
}
curl
curl -X POST https://gateway.pipeworx.io/nbu-ua/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"nbu_international_reserves","arguments":{"date":"20240115"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('nbu_international_reserves', {
"date": "20240115"
});
More examples
{}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"nbu-ua": {
"url": "https://gateway.pipeworx.io/nbu-ua/mcp"
}
}
}
See Getting Started for client-specific install steps.