hts_lookup

Pack: hts · Endpoint: https://gateway.pipeworx.io/hts/mcp

Get the full tariff detail for ONE HTS code, AND resolve its Section 301 (China) / Section 232 (steel & aluminum) Chapter-99 add-on duties into an effective-total view. Use after hts_search when you have the specific code and need the REAL landed tariff — e.g. “8712.00.48 is 11% base, plus Section 301 9903.88.03 +25% on China-origin = 36% effective”. Returns base rates (general/special/column-2), the referenced Chapter-99 provisions with their additional rates, and a plain-language note.

Parameters

NameTypeRequiredDescription
hts_codestringyesA specific HTS code, e.g. “8712.00.48” or “8712.00.48.00”

Example call

Arguments

{
  "hts_code": "8712.00.48"
}

curl

curl -X POST https://gateway.pipeworx.io/hts/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"hts_lookup","arguments":{"hts_code":"8712.00.48"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('hts_lookup', {
  "hts_code": "8712.00.48"
});

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "hts": {
      "url": "https://gateway.pipeworx.io/hts/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 2, 2026