china_balance_of_payments
Pack: china-safe · Endpoint: https://gateway.pipeworx.io/china-safe/mcp
China’s quarterly balance of payments (国际收支平衡表) from SAFE’s English site — current account
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
quarters | integer | no | How many of the most recent quarters to return (default 8, max 40). |
currency | string | no | Reporting currency: “usd” (default), “rmb”, or “sdr”. |
Example call
Arguments
{
"quarters": 2
}
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_balance_of_payments","arguments":{"quarters":2}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('china_balance_of_payments', {
"quarters": 2
});
More examples
{
"quarters": 4,
"currency": "rmb"
}
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.