uktariff_commodity

Pack: uk-trade-tariff · Endpoint: https://gateway.pipeworx.io/uk-trade-tariff/mcp

No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/uktariff_commodity for the schema, then POST the same URL with its arguments for the data.

Full UK tariff detail for one 10-digit commodity code: the third-country (MFN) duty rate, every preferential rate by country or trading bloc, VAT and excise measures, quota-linked rates, and the import/export licensing and document conditions attached to the code. AUTHORITATIVE, sourced from HMRC’s UK Integrated Online Tariff. Use for “what duty do I pay importing X into the UK”, “is there a preferential rate from country Y”, “what VAT applies”. Example: uktariff_commodity({ code: “0901210000” })

Parameters

NameTypeRequiredDescription
codestringyes10-digit UK commodity code, with or without spaces, e.g. “0901210000”
originstringnoOptional 2-letter country code or area id to filter measures to one origin, e.g. “NZ”, “US”, “1011” (erga omnes)
max_measuresnumbernoMaximum measures to return (default 60, max 200)

Example call

Arguments

{
  "code": "0901210000",
  "max_measures": 3
}

curl

curl -X POST https://gateway.pipeworx.io/uk-trade-tariff/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"uktariff_commodity","arguments":{"code":"0901210000","max_measures":3}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('uktariff_commodity', {
  "code": "0901210000",
  "max_measures": 3
});

More examples

{
  "code": "0901210000",
  "origin": "NZ"
}

Connect

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

{
  "mcpServers": {
    "uk-trade-tariff": {
      "url": "https://gateway.pipeworx.io/uk-trade-tariff/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 18, 2026