# FreightUtils MCP Server

16 free freight tools for AI agents — LDM/CBM/chargeable weight calculators (road, air, sea modes), multi-item consignment calculator, pallet fitting, container capacity, air cargo ULD reference (15+…

## Quick Start

```bash
# Connect this server (installs CLI if needed)
npx -y @smithery/cli@latest mcp add freightutils/freightutils-mcp

# Browse available tools
npx -y @smithery/cli@latest tool list freightutils/freightutils-mcp

# Get full schema for a tool
npx -y @smithery/cli@latest tool get freightutils/freightutils-mcp cbm_calculator

# Call a tool
npx -y @smithery/cli@latest tool call freightutils/freightutils-mcp cbm_calculator '{}'
```

## Direct MCP Connection

Endpoint: `https://freightutils-mcp--freightutils.run.tools`

## Tools (11)

- `cbm_calculator` — Calculate cubic metres (CBM) for a shipment. CBM is the standard volume unit in international shipping. 1 CBM = 1m x 1m…
- `chargeable_weight_calculator` — Calculate air freight chargeable weight (volumetric vs actual). Airlines charge the greater of actual weight or volumet…
- `ldm_calculator` — Calculate loading metres (LDM) for road freight. LDM measures trailer utilisation. European trailers are 13.6m long, 2.…
- `adr_lookup` — Look up dangerous goods from the ADR 2025 database (2,939 entries). Provide a UN number for exact lookup, or a search t…
- `adr_exemption_calculator` — Calculate ADR 1.1.3.6 exemption. Points = quantity x multiplier per transport category. Total <= 1,000 = exempt from fu…
- `airline_lookup` — Search 6,352 airlines by name, IATA/ICAO code, AWB prefix, or country. AWB prefixes are 3-digit codes on air waybills i…
- `container_lookup` — Get ISO shipping container specs (10 types: 20ft, 40ft, 40ft HC, reefer, open-top, flat-rack, 45ft). Returns dimensions…
- `hs_code_lookup` — Search 6,940 Harmonized System tariff codes. HS codes are 6-digit international product classification codes used for c…
- `incoterms_lookup` — Look up Incoterms 2020 trade rules. 11 rules defining transport, insurance, customs responsibilities. 7 for any mode (E…
- `pallet_fitting_calculator` — Calculate how many boxes fit on a pallet with layers, rotation, and weight limits. Determines optimal arrangement and v…
- `unit_converter` — Convert between freight units. Weight: kg, lbs, oz, tonnes, short_tons, long_tons. Volume: cbm, cuft, cuin, litres, gal…

```bash
# Get full input/output schema for a tool
npx -y @smithery/cli@latest tool get freightutils/freightutils-mcp <tool-name>
```
