Warp MCP Server

MCP server for the Warp freight API. 26 tools covering the full booking lifecycle: mode compare (one call prices every eligible mode in parallel and

Local serverstdioGo

What is the Warp MCP server?

If you already use Warp, the warp mcp server is the piece that lets your assistant work with it directly. MCP server for the Warp freight API. 26 tools covering the full booking lifecycle: mode compare (one call prices every eligible mode in parallel and returns a decision-complete recommendation with the cost-vs-transit math), quote.

What the server does

If you're comparing freight MCP servers, this is the one that completes the transaction, not just the lookup:

  • It books real freight, not just quotes or tracking. — The tools below quote,
  • Multi-mode, not parcel. — LTL, FTL, box truck, and cargo van. EasyPost and
  • First to ship. — npm-published April 16, 2026 — the first production MCP server
  • Works in every MCP client today. — Claude Desktop, Claude Code, Cursor,
  • Verifiable. — The machine-readable discovery manifest at

Installation

warp-agent-mcp on npm is all you need. Most clients run it directly, so configuration is a few lines and a restart.

Available tools

The toolset is worth reading before you wire it up, because it tells you what the integration is really for:

  • Multi — mode, not parcel.** LTL, FTL, box truck, and cargo van. EasyPost and
  • macOS — ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows — %APPDATA%\Claude\claude_desktop_config.json
  • compare_modesStart here. Compare every eligible mode (van/box truck/LTL/FTL) in one parallel call and get a decision-complete recommendation with the
  • van_quote — Quote a 1–3 pallet cargo van shipment
  • box_truck_quote — Quote a 1–12 pallet box truck shipment
  • ftl_quote — Quote a full truckload (53' dry van)
  • ltl_quote — Quote LTL — Warp's flagship freight product
  • ltl_market_options — Multi-carrier LTL comparison - 30+ carriers ranked by price
  • batch_quote — Quote many lanes in one call (a whole spreadsheet / CSV)
  • book — Book any quote by id, with pickup + delivery addresses
  • batch_book — Book many already-quoted lanes in one call

Credentials and setup notes

Configuration is passed through the environment: WARP_API_KEY, WARP_API_URL. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

  • Node.js 20 or later (the MCP SDK requires native fetch and Web Standard APIs)

Worth knowing first

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Warp.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Where it fits

Plenty of developer tooling servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Warp's toolset — Multi, macOS, Windows and 11 more — is a fair guide to whether it matches your workflow. It is maintained by rahulharikumarr; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Available tools

ToolWhat it does
Multimode, not parcel.** LTL, FTL, box truck, and cargo van. EasyPost and
macOS~/Library/Application Support/Claude/claude_desktop_config.json
Windows%APPDATA%\Claude\claude_desktop_config.json
compare_modes**Start here.** Compare every eligible mode (van/box truck/LTL/FTL) in one parallel call and get a decision-complete recommendation with the trade-off math
van_quoteQuote a 1–3 pallet cargo van shipment
box_truck_quoteQuote a 1–12 pallet box truck shipment
ftl_quoteQuote a full truckload (53' dry van)
ltl_quoteQuote LTL — Warp's flagship freight product
ltl_market_optionsMulti-carrier LTL comparison - 30+ carriers ranked by price
batch_quoteQuote many lanes in one call (a whole spreadsheet / CSV)
bookBook any quote by id, with pickup + delivery addresses
batch_bookBook many already-quoted lanes in one call
multistop_quoteQuote a multi-stop FTL route — one truck, 3+ stops in order
multistop_bookBook a quoted multi-stop route as per-leg shipments

How to install the Warp MCP server

{
  "mcpServers": {
    "warp-agent": {
      "command": "npx",
      "args": ["-y", "warp-agent-mcp"],
      "env": {
        "WARP_API_KEY": "your-value",
        "WARP_API_URL": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

  • Node.js 20 or later (the MCP SDK requires native fetch and Web Standard APIs)
VariableDescriptionRequired
WARP_API_KEYCredential the server authenticates with.Yes
WARP_API_URLEndpoint or connection string the server talks to.Yes

Example prompts to try

  • Use Warp to Multi.
  • Use Warp to macOS.
  • Use Warp to Windows.

Frequently asked questions

It connects Warp to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (Multi, macOS, Windows, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Warp directly.