uktariff_quota

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_quota for the schema, then POST the same URL with its arguments for the data.

Search UK tariff-rate quotas (TRQs) — the limited volumes of a good that may be imported at a reduced or zero duty rate. Returns each quota definition with its order number, initial volume, REMAINING BALANCE, measurement unit, validity window, status (Open/Exhausted/Blocked) and the origins it applies to. AUTHORITATIVE for “is the UK quota for X still open”, “how much of the New Zealand lamb quota is left”. Sourced from HMRC’s UK Integrated Online Tariff. Example: uktariff_quota({ year: 2026, geographical_area_id: “NZ” })

Parameters

NameTypeRequiredDescription
order_numberstringnoQuota order number, e.g. “050006”
goods_nomenclature_item_idstringno10-digit commodity code the quota applies to, e.g. “0201300000”
geographical_area_idstringnoOrigin country or area code, e.g. “NZ”, “AU”
yearnumbernoQuota year, e.g. 2026. Strongly recommended — without a filter the search is the whole register
criticalbooleannoOnly quotas flagged critical (nearly exhausted, stricter licensing)
limitnumbernoMaximum quota definitions to return (default 25, max 100)

Example call

Arguments

{
  "year": 2026,
  "geographical_area_id": "NZ",
  "limit": 2
}

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_quota","arguments":{"year":2026,"geographical_area_id":"NZ","limit":2}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('uktariff_quota', {
  "year": 2026,
  "geographical_area_id": "NZ",
  "limit": 2
});

More examples

{
  "order_number": "050006"
}

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