china_safe_releases
Pack: china-safe · Endpoint: https://gateway.pipeworx.io/china-safe/mcp
Lists the actual publish dates of SAFE’s reserves/BOP/external-debt English pages, straight from each
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
limit | integer | no | Max releases to return (default 6, max 15). |
Example call
Arguments
{
"limit": 6
}
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_safe_releases","arguments":{"limit":6}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('china_safe_releases', {
"limit": 6
});
More examples
{
"limit": 3
}
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.