Free to build. Premium to run.
The integrations are open source and free forever. When it's time for production, we run them for you — idempotent writes, automatic retries, full visibility.
Open source
Every integration we ship, MIT-licensed. Bring your own keys and run it yourself.
- All Shopify, Stripe, ShipStation & UCP adapters
- Runnable examples + the /build code generator
- Community support via GitHub
Pro
Most popularFor teams shipping agentic commerce to production. The safe-by-default build, plus a human to ask.
- Production-hardened /build output (idempotency keys + retry/backoff)
- Trusted-agent checkout completion
- Priority email support & early access to new integrations
Managed
We run it for you. White-glove setup and operation of your commerce integrations.
- We run it in production — secrets, idempotency, retries, monitoring
- Idempotency-safe writes — no duplicate orders or charges
- Direct line for incidents and changes
What “production-hardened” means
const result = await client.callTool("create_order", {
line_items: [{ variant_id, quantity: 1 }],
shipping_address,
});const result = await client.callTool("create_order", {
line_items: [{ variant_id, quantity: 1 }],
shipping_address,
}, {
idempotencyKey: `order-${sessionId}`,
retry: { attempts: 3, backoff: "exponential", retryOn: [429, 503] },
});
// Pro also validates the response schema before returning,
// so your agent never acts on a partial or malformed order.Without an idempotency key, a network failure after the server creates the order but before it responds makes your agent retry — creating a duplicate order. This is the single most common agentic-commerce failure, and it's what the Pro build prevents by default.
Open-source code is free under the MIT license. Premium and Managed cover support and operation, never access to the code.