china_trade_by_commodity
Pack: china-customs · Endpoint: https://gateway.pipeworx.io/china-customs/mcp
China’s merchandise exports/imports by HS Section and 2-digit HS chapter (Division), for the month and
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
month | string | no | Month as “YYYY-MM”, e.g. “2026-07”. Omit for the latest published month. |
hs_section | string | no | Optional filter: a 2-digit HS chapter code (e.g. “84”) or free text matching a section/chapter name (e.g. “machinery”, “textiles”). |
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_by_commodity","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('china_trade_by_commodity', {});
More examples
{
"hs_section": "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.