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.
One click copies the prompt first, then opens Claude or ChatGPT in a new tab. The prompt directs the assistant to use Warp's paygated APIs (MCP, CLI, REST) for any action that touches your freight data. Install the MCP and grab an API key in about 3 minutes. No booking happens without your confirmation.
What this does
Use any AI assistant to scan a week's worth of outbound shipments and find pooling opportunities. The prompt groups shipments by destination metro and pickup window proximity, then recommends the right pooling shape per cluster: cross-dock LTL consolidation, FTL pool, or anonymous Coalition matching for half-empty trucks.
Estimates are benchmarked against Warp's public LTL rates API and per-pallet pricing. Hazmat and temperature-controlled freight are flagged out of pool candidacy automatically. Coalition matches stay capacity-only -- never rate-shared -- so the workflow is antitrust-safe by design.
Input format
Paste a CSV or table of your weekly shipments. Minimum columns:
origin_zip,dest_zip,pallets,weight_lbs,pickup_date,mode,hazmat,temp_controlled 90210,30301,4,2400,2026-04-28,LTL,false,false 90210,30303,3,1800,2026-04-29,LTL,false,false 60601,33101,8,5200,2026-04-30,LTL,false,false 77001,33102,2,1100,2026-05-01,LTL,false,false
Rows 1-2 cluster (same origin LA, same Atlanta market, 1-day pickup gap) -- pool candidate. Rows 3-4 cluster (Miami market, 1-day gap) -- pool candidate. The agent surfaces these clusters automatically.
Output structure
A pooling memo with one entry per recommended pool plus a roll-up:
POOL_001 shipments: [shipment_id_1, shipment_id_2] origin_market: 902 (LA) dest_market: 303 (Atlanta) total_pallets: 7 total_weight_lbs: 4200 pickup_window: 2026-04-28 -- 2026-04-29 mode_recommended: cross-dock LTL consolidation estimated_cost_separate: $1,920 estimated_cost_pooled: $1,440 estimated_savings: $480 (25%) estimated_co2_saved: 142 kg action: book single LTL via warp_quote, both shipments ROLL_UP pools_recommended: 2 pools_rejected: 1 (mismatched temp requirements) total_estimated_savings: $890 total_co2_saved: 287 kg
Run as a Warp MCP agent
The prompt above can be pasted into any LLM, but the cleanest path is Claude Desktop with Warp MCP installed. The MCP exposes 17 Warp tools (warp_quote, warp_lane_history, warp_book, etc.) that the assistant calls directly with your API key. Quote tools are free; production booking uses the card on file.
# Install
npm install -g warp-agent-mcp
# Get an API key (3 minutes)
open https://www.wearewarp.com/agents/account
# Configure Claude Desktop
# ~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"warp": {
"command": "warp-agent-mcp",
"env": { "WARP_API_KEY": "wak_live_xxx" }
}
}
}