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
| Name | Type | Required | Description |
|---|---|---|---|
order_number | string | no | Quota order number, e.g. “050006” |
goods_nomenclature_item_id | string | no | 10-digit commodity code the quota applies to, e.g. “0201300000” |
geographical_area_id | string | no | Origin country or area code, e.g. “NZ”, “AU” |
year | number | no | Quota year, e.g. 2026. Strongly recommended — without a filter the search is the whole register |
critical | boolean | no | Only quotas flagged critical (nearly exhausted, stricter licensing) |
limit | number | no | Maximum 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.