china_fx_reserves
Pack: china-safe · Endpoint: https://gateway.pipeworx.io/china-safe/mcp
China’s official reserve assets (官方储备资产) by month, from SAFE’s English site: headline FX reserves
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
months | integer | no | How many of the most recent months to return (default 12, max 24). |
Example call
Arguments
{
"months": 3
}
curl
curl -X POST https://gateway.pipeworx.io/china-safe/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"china_fx_reserves","arguments":{"months":3}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('china_fx_reserves', {
"months": 3
});
More examples
{}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"china-safe": {
"url": "https://gateway.pipeworx.io/china-safe/mcp"
}
}
}
See Getting Started for client-specific install steps.