China Customs
live TradeChina Customs (GACC English) — monthly merchandise trade statistics.
Tools
china_trade_summary China's total monthly merchandise trade — exports, imports, balance — in both USD and CNY (unit: 100 million),
No parameters required.
Try it
china_trade_by_country China's merchandise exports/imports/balance by trading partner country or region, for the month and
No parameters required.
Try it
china_trade_by_commodity China's merchandise exports/imports by HS Section and 2-digit HS chapter (Division), for the month and
No parameters required.
Try it
china_trade_indices China's trade indices — unit-value, quantum and value indices for exports or imports, base = same month of
No parameters required.
Try it
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/china-customs/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' curl -X POST https://gateway.pipeworx.io/china-customs/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"china_trade_summary","arguments":{}}}' Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("china_trade_summary", {}); // Or ask in plain English:
const answer = await px.ask("china customs (gacc english) — monthly merchandise trade statistics");