china_trade_indices
Pack: china-customs · Endpoint: https://gateway.pipeworx.io/china-customs/mcp
China’s trade indices — unit-value, quantum and value indices for exports or imports, base = same month of
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
month | string | no | Month as “YYYY-MM”, e.g. “2026-07”. Omit for the latest published month. |
direction | string | no | ”exports” (default) or “imports”. |
series | string | no | Classification: hs2 (default), sitc2, bec, industry, hs4, or sitc3. |
chained | boolean | no | true for the chained-index variant. Default false. |
hs2 | string | no | Optional 2-digit HS chapter code to drill into, e.g. “84”. |
Example call
Arguments
{}
curl
curl -X POST https://gateway.pipeworx.io/china-customs/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"china_trade_indices","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('china_trade_indices', {});
More examples
{
"hs2": "84"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"china-customs": {
"url": "https://gateway.pipeworx.io/china-customs/mcp"
}
}
}
See Getting Started for client-specific install steps.