china_external_debt
Pack: china-safe · Endpoint: https://gateway.pipeworx.io/china-safe/mcp
China’s gross external debt position by sector (外债, since 2014Q4) from SAFE’s English site — total, by
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
quarters | integer | no | How many of the most recent quarters to return (default 8, max 40). |
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_external_debt","arguments":{"quarters":2}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('china_external_debt', {
"quarters": 2
});
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.