Self-service freight API. Pay as you go. Built for agents and developers.
Quote in 3 fields. Rebook in 2. MCP, CLI, and 20k+ carriers.
Featured prompts
Pre-built Warp-aware prompts for Claude Code or Codex. Each one routes planning and quoting for free, then uses Warp's API, MCP, or CLI only when you want to execute or book.
Decide
Pool your freight shipments with AI.
Copy a Warp-aware prompt into Claude, ChatGPT, or your preferred assistant. It scans your shipment list, groups same-region destinations and overlapping pickup windows, and recommends LTL consolidation, FTL pool, or Coalition matching.
Operate
Catch accessorial leaks before you book.
Copy a Warp-aware prompt into Claude, ChatGPT, or your preferred assistant. It walks every accessorial line on a quote, surfaces leaks against the actual delivery profile, and drafts pushback language for the carrier sales rep before pickup.
How Warp compares
| Feature | Warp | Freightos | Uber Freight | Flock Freight |
|---|---|---|---|---|
| Min fields per quote | 3 (FTL), 5 (van/box truck), 7 (LTL) | 10+ required fields* | Requires sales call* | Requires sales call* |
| Repeat ship field count | 2 (lane_id + pickup_date) | All fields again* | Requires sales call* | Requires sales call* |
| Carrier count | XPO, ABF, SAIA, Estes, FedEx Freight + 20k | 1,000+* | Proprietary fleet* | 500+* |
| MCP support | Yes (17 tools) | No* | No* | No* |
| CLI support | Yes (warp-agent) | No* | No* | No* |
| Prepay flow | Self serve, no sales call | Requires sales call* | Requires sales call* | Requires sales call* |
* Competitor data unverified. Based on publicly available documentation as of April 2026. "Requires sales call" means no self serve API access was found in public docs.
Install
MCP server
npm install -g warp-agent-mcpAgent CLI
npm install -g @warpfreight/cli-agentBoth packages share one Warp account. Run warp-agent login once -- the key is saved to ~/.warp/config.json and read by both the CLI and the MCP server. Full quickstart at /tools/cli.
LLM tool call example
A Claude Code tool call that quotes a van shipment, then books it.
// Claude Code tool call (van: 5 required fields)
{
"tool": "warp_van_quote",
"args": {
"origin_zip": "90001",
"destination_zip": "10001",
"pallets": 2,
"weight_lbs_per_pallet": 800,
"pickup_date": "2026-07-14"
}
}
// Response
{
"quote_id": "wq_a3f8c1",
"lane_id": "ln_900_100",
"mode": "van",
"price_usd": 1850.00,
"transit_days": 5,
"quote_tier": "firm",
"expires_at": "2026-07-11T15:30:00Z",
"booking_url": "https://customer.wearewarp.com/public/freight-quote?quote_id=wq_a3f8c1"
}
// Book it
{
"tool": "warp_book",
"args": { "quote_id": "wq_a3f8c1" }
}