adcvd_case
Pack: trade-compliance · Endpoint: https://gateway.pipeworx.io/trade-compliance/mcp
Look up a specific US antidumping/countervailing duty case by its case number (A-570-979 style: letter A=antidumping or C=countervailing, 3-digit country code, 3-digit case code) or by a Federal Register document number. Returns every Federal Register notice on file for that case with full abstract text and the FR URL — use after adcvd_orders when you already have the case number and need the underlying notices (initiation, order, continuation, revocation, amendments) in one place.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
case_number | string | no | AD/CVD case number, e.g. “A-570-979” or “C-570-980” |
document_number | string | no | Federal Register document number, e.g. “2026-16033” (alternative to case_number) |
Example call
Arguments
{
"case_number": "A-570-209"
}
curl
curl -X POST https://gateway.pipeworx.io/trade-compliance/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"adcvd_case","arguments":{"case_number":"A-570-209"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('adcvd_case', {
"case_number": "A-570-209"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"trade-compliance": {
"url": "https://gateway.pipeworx.io/trade-compliance/mcp"
}
}
}
See Getting Started for client-specific install steps.