tariff_arbitrage_finder
ActiveTool of @gapup/mcp-knowledge
As a COO, identify tariff reclassification opportunities to reduce import costs. Analyzes product HS codes against WTO TFA and USA Trade Online data to find lower-duty classifications. Inputs: product description, current HS code, country of origin, and annual import volume. Outputs: potential duty savings, alternative HS codes, and compliance considerations.
Parameters schema
{
"type": "object",
"required": [
"productDescription",
"currentHsCode",
"countryOfOrigin"
],
"properties": {
"async": {
"type": "boolean",
"description": "If true, returns a job_id immediately (<200ms) instead of waiting for the result. Poll the result with job_result(job_id). Use for slow tools to avoid client timeouts."
},
"annualVolume": {
"type": "number",
"minimum": 1
},
"currentHsCode": {
"type": "string",
"pattern": "^\\d{6,10}$"
},
"countryOfOrigin": {
"type": "string"
},
"currentDutyRate": {
"type": "number",
"maximum": 100,
"minimum": 0
},
"productDescription": {
"type": "string"
}
}
}No endpoints wrapped at confidence ≥ 0.70.
Parent server
@gapup/mcp-knowledge
https://github.com/getgapup/gapup-mcp
2/7 registries