uktariff_heading

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

List the commodity codes that sit under one 4-digit UK tariff heading, with descriptions, indent level and whether each is declarable. Use this to drill down after uktariff_search returns a heading, or to enumerate the options within a product family before picking a code. Sourced from HMRC’s UK Integrated Online Tariff. Example: uktariff_heading({ heading: “0901” })

Parameters

NameTypeRequiredDescription
headingstringyes4-digit tariff heading, e.g. “0901” (coffee) or “8703” (motor cars)
limitnumbernoMaximum commodities to return (default 50, max 200)

Example call

Arguments

{
  "heading": "0901",
  "limit": 6
}

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_heading","arguments":{"heading":"0901","limit":6}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('uktariff_heading', {
  "heading": "0901",
  "limit": 6
});

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