FreightUtils MCP Server
The FreightUtils MCP Server provides AI agents with 17 specialized tools for freight calculation, reference lookups, and logistics analysis for international shipping and trade.
Calculations & Measurements
CBM Calculator – Calculate cubic metres for sea freight from box dimensions and piece count
Chargeable Weight Calculator – Determine air freight chargeable weight (volumetric vs. actual; supports IATA 6,000 and custom divisors like DHL's 5,000)
LDM Calculator – Calculate loading metres for European road freight with trailer utilisation percentage (supports euro, UK, half, quarter pallet presets and artic/rigid vehicle types)
Consignment Calculator – Multi-item combined LDM, CBM, and chargeable weight in one call
Pallet Fitting Calculator – Determine how many boxes fit on a pallet with layer-by-layer stacking, 90° rotation, weight limits, and volume utilisation
Unit Converter – Convert between weight (kg, lbs, tonnes), volume (CBM, cu ft), length (cm, m, inches), and freight-specific conversions (CBM → chargeable kg/freight tonnes)
Reference & Lookup
Container Lookup – Specs for 10 ISO container types (20ft/40ft standard, high-cube, reefer, open-top, flat-rack, 45ft) including dimensions, CBM capacity, and loading calculations
ADR Lookup – Search 2,939 dangerous goods entries from the ADR 2025 database by UN number or substance name
ADR Exemption Calculator – Calculate ADR 1.1.3.6 small load exemption points for single or mixed hazardous loads
HS Code Lookup – Search 6,940 Harmonized System tariff codes by product description or code, with full classification hierarchy
Incoterms Lookup – Explain all 11 Incoterms 2020 rules, seller/buyer responsibilities, and risk/cost transfer points
Airline Lookup – Search 6,352 airlines by name, IATA/ICAO code, AWB prefix, or country
UN/LOCODE Lookup – Search 116,129 location codes worldwide
ULD Lookup – Specifications for 15 air cargo Unit Load Device types
Vehicle Lookup – Road freight vehicle and trailer specs for 17 EU/US vehicle types
Compliance & Composite Tools
UK Duty Calculator – Estimate UK import duty and VAT using live GOV.UK data by HS code, origin country, and shipment value
Shipment Summary – A single-call composite tool that chains multiple tools for full shipment analysis
Provides access to IATA standards and data for air freight calculations, including chargeable weight calculations using the IATA standard volumetric factor of 6000, airline lookup with IATA codes, and air cargo ULD specifications.
FreightUtils MCP Server
A Model Context Protocol server that gives AI agents access to 18 freight calculation and reference tools, covering road, air, and sea freight.
Built by an ADR-certified freight transport planner for AI agents, developers, and freight professionals.
Website: https://www.freightutils.com API Docs: https://www.freightutils.com/api-docs
Tools (18)
Calculators
Tool | Description |
| Loading metres for European and US road trailers |
| Cubic metres for sea freight |
| Air freight chargeable weight (volumetric vs actual) |
| Box-on-pallet optimisation with rotation |
| ISO container specs (10 types) and loading calculation |
| Weight, volume, length, and freight-specific conversions |
| Multi-item CBM, weight, LDM, chargeable weight |
Dangerous Goods (ADR)
Tool | Description |
| 2,939 UNECE ADR 2025 entries |
| ADR 1.1.3.6 small load exemption check |
| Limited and Excepted Quantity eligibility |
Customs & Tariff
Tool | Description |
| 6,940 Harmonized System tariff codes (HS 2022) |
| UK import duty and VAT (live GOV.UK Trade Tariff data) |
| Incoterms 2020 — all 11 rules with risk/cost transfer points |
Reference Data
Tool | Description |
| 6,352 airlines with IATA/ICAO codes and AWB prefixes |
| 116,129+ UN/LOCODE transport locations |
| 15 air cargo ULD types (LD3, PMC, etc.) |
| 17 road freight vehicles and trailers |
Composite
Tool | Description |
| Chains CBM + weight + LDM + ADR + duty in one call |
Installation
Claude Desktop / Claude Code (stdio)
Add to your MCP config (claude_desktop_config.json or .claude/settings.json):
{
"mcpServers": {
"freightutils": {
"command": "npx",
"args": ["freightutils-mcp"]
}
}
}Remote HTTP / SSE
If your MCP client supports remote servers, use the canonical URL:
https://www.freightutils.com/api/mcpThe older URL
https://www.freightutils.com/api/mcp/mcpstill works for backwards compatibility with existing clients.
No authentication required for basic usage.
Rate Limits
All tools call the free FreightUtils API:
Anonymous: 25 requests/day per IP
Free API key: 100 requests/day (register at https://www.freightutils.com)
Pro: 50,000 requests/month at £19/month
Example Prompts
Once connected, your AI agent can:
"Calculate CBM for a box 120cm × 80cm × 100cm, 24 pieces"
"Look up UN 1203 in the ADR database"
"Check if 200L of petrol qualifies for ADR 1.1.3.6 exemption"
"Find the HS code for lithium batteries"
"What does FOB mean in shipping?"
"How many boxes of 40×30×25cm fit on a euro pallet?"
"Calculate loading metres for 26 euro pallets on an artic trailer"
"What's the UK import duty on laptops from China?"
Data Sources
ADR 2025 — UNECE (licensed from Labeline.com)
HS 2022 — UN Comtrade (PDDL)
Airlines — public IATA/ICAO data, cross-referenced
UN/LOCODE — UNECE
UK Duty — live GOV.UK Trade Tariff API
Containers/ULD/Vehicles — ISO, IATA, and industry-standard specifications
Changelog
1.0.8 — 2026-04-23 (hotfix)
Critical fix: revert
list_prompts/list_resourcesstub handlers introduced in 1.0.7. The raw SDK asserts the corresponding capability must be declared beforesetRequestHandleris called — 1.0.7 threwServer does not support promptsat startup, crashing the MCP server on every run. 1.0.8 removes the stubs and restores boot.Server identity bumped:
version: '1.0.7'→'1.0.8'.No other changes. 18 tools, annotations,
shipment_summarydescriptions, andsmithery.yamlfrom 1.0.7 are preserved.
1.0.7 — 2026-04-22
Add
smithery.yamlwith empty configSchema (Smithery Quality Score: config UX +25).Add read-only
annotationsto all 18 tools (readOnlyHint: true,destructiveHint: false,idempotentHint: true,openWorldHint: false) with human-readabletitle(+7).Add missing parameter
.describe(...)text toshipment_summary(+1).Add stub
list_prompts/list_resourceshandlers so probes return{ prompts: [] }/{ resources: [] }instead of-32601 Method not found(+5).Fix server identity:
name: 'FreightUtils'→'freightutils-mcp',version: '1.0.0'→'1.0.7'.No breaking changes. Same 18 tools, same names, same behaviour.
1.0.6 — 2026-04-22
Security: bump
@modelcontextprotocol/sdkto1.26.0to patch CVE-2026-25536 (cross-client data leak via shared transport/server instance reuse). See GHSA-345p-7cg4-v4c7.No user-facing API changes. Same 18 tools.
Links
Main site: https://www.freightutils.com
API documentation: https://www.freightutils.com/api-docs
GitHub (this repo): https://github.com/SoapyRED/freightutils-mcp
License
MIT — see LICENSE.
Built by Marius Cristoiu, ADR-certified freight transport planner.
Maintenance
Appeared in Searches
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/SoapyRED/freightutils-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server