tariff_impact_simulator
ActiveTool of @gapup/mcp-knowledge
As a COO, model how proposed tariff changes affect landed costs for imported goods. Inputs: HS code, current tariff rate, proposed tariff rate, product value, shipping cost, and country of origin. Outputs: detailed cost breakdown including new duties, taxes, and total landed cost impact. Sources include WTO TFA and US Census trade data.
Parameters schema
{
"type": "object",
"required": [
"hsCode",
"currentTariffRate",
"proposedTariffRate",
"productValue",
"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."
},
"hsCode": {
"type": "string",
"maxLength": 10,
"minLength": 6
},
"productValue": {
"type": "number",
"minimum": 0
},
"shippingCost": {
"type": "number",
"minimum": 0
},
"countryOfOrigin": {
"type": "string",
"maxLength": 2,
"minLength": 2
},
"currentTariffRate": {
"type": "number",
"maximum": 100,
"minimum": 0
},
"proposedTariffRate": {
"type": "number",
"maximum": 100,
"minimum": 0
}
}
}No endpoints wrapped at confidence ≥ 0.70.
Parent server
@gapup/mcp-knowledge
https://github.com/getgapup/gapup-mcp
2/7 registries