Real-time Data

Quote orchestration

Create, monitor, and finalize quotes directly from MCP-aware assistants.

Create multi-line quotes

Call `quotes.create` with BOM line items to generate a live quote identifier.

await client.call("quotes.create", {
  reference: "BOM-REV-C",
  items: [
    { sku: "ESP32-C3-MINI-1", quantity: 250 },
    { sku: "C0603C104K5RACTU", quantity: 5000 }
  ]
});

Track quote lifecycle

Use `quotes.status` to monitor approval, expiry, and fulfillment events. Pair with streaming notifications for instant updates.

  • Forward quote PDFs via `quotes.export` to attach them to CRM deals automatically.
  • Trigger automation actions when quotes are accepted to generate purchase requests in your ERP.
Quote orchestration with Source Parts MCP