You're viewing a demo portfolio

Join the waitlist
PRSM

quick_checkout

Active

Tool of Synchronity

declared in 0.2.0

Assemble checkout-ready cart(s) in ONE call for a multi-product (and optionally multi-store) request. Creates a cart per store, adds all items, and sets the shipping address — then returns the cart(s) with delivery options to choose. Use this when the buyer lists several products at once (optionally across stores) and/or gives their address up front, instead of calling create_cart/add_to_cart/set_shipping_address separately. Does NOT select delivery, check out, or pay — the buyer picks delivery (select_shipping_option) and approves checkout/payment per store afterward. Out-of-stock items are reported; pass customer.email to auto-arm a back-in-stock alert for them.

Parameters schema

{
  "type": "object",
  "required": [
    "items",
    "shipping_address"
  ],
  "properties": {
    "items": {
      "type": "array",
      "items": {
        "type": "object",
        "required": [
          "site_id",
          "product_id",
          "quantity"
        ],
        "properties": {
          "addons": {
            "type": "object"
          },
          "site_id": {
            "type": "string"
          },
          "quantity": {
            "type": "integer"
          },
          "product_id": {
            "type": "string"
          },
          "variant_id": {
            "type": "string"
          }
        }
      },
      "description": "Products to buy. Each entry: { site_id, product_id, quantity, variant_id?, addons? }. Items may span multiple stores (grouped by site_id)."
    },
    "customer": {
      "type": "object",
      "properties": {
        "name": {
          "type": "string"
        },
        "email": {
          "type": "string"
        },
        "phone": {
          "type": "string"
        }
      },
      "description": "Optional buyer contact carried for checkout; customer.email arms back-in-stock alerts for out-of-stock items."
    },
    "shipping_address": {
      "type": "object",
      "required": [
        "country_code"
      ],
      "properties": {
        "city": {
          "type": "string"
        },
        "state": {
          "type": "string"
        },
        "postal_code": {
          "type": "string"
        },
        "country_code": {
          "type": "string",
          "description": "2-letter ISO country code (required)."
        }
      },
      "description": "Buyer delivery address (applied to every store)."
    }
  }
}

What this tool wraps· 0 endpoints

min confidence0.700.50

No endpoints wrapped at confidence ≥ 0.50.

Parent server

Synchronity

https://github.com/themewireco/synchronity

2/7 registries
View full server →
quick_checkout — Synchronity — PRSM MCP