The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the VibeCart listing page.
Commerce infrastructure for AI-built apps and AI agents.
VibeCart lets a merchant keep their existing app and Stripe account while adding a small, inspectable commerce layer that AI agents can discover and use. Payments settle directly to the merchant's Stripe account; VibeCart does not need to become merchant of record.
The architecture is protocol-first: one trusted commerce backend, then thin MCP/UCP/client adapters around it.
Endpoint: https://vibecart.vercel.app/mcp
Tools:
vibecart.list_productsvibecart.get_productvibecart.get_integration_instructionsvibecart.create_checkoutvibecart.create_checkout supports both the legacy single-product input and a trusted multi-item items[] input. Product prices are resolved on the server; callers do not supply real transaction prices.
Generic MCP clients should use /mcp.
VibeCart's Neon-backed cart is live in production:
POST /api/cartGET /api/cart/:idPATCH /api/cart/:idDELETE /api/cart/:idPOST /api/cart/:id/checkoutThe cart uses trusted server-side repricing, idempotent creation, optimistic version checks, expiration, multi-item state, and cart-to-Stripe Checkout handoff.
https://vibecart.vercel.app/.well-known/ucphttps://vibecart.vercel.app/ucp/mcp2026-04-08Production advertises released catalog and cart capabilities. Current cart tools are:
create_cartget_cartupdate_cartcancel_cartUCP calls require meta.ucp-agent.profile and capability negotiation. Do not point an ordinary MCP client at /ucp/mcp.
The order pipeline and released-schema get_order adapter also exist, but get_order remains hidden until its VibeCart Cloud lookup and real merchant permalink dependencies are configured. VibeCart does not advertise optional capabilities before their runtime dependencies are ready.
/he-said-nothing is the controlled physical-product pilot for the $39, $59, and $89 mystery gift boxes. The storefront can remain public while ordering fails closed. When the full launch gate is configured it:
/he-said-nothing/adminThe checkout gate requires every dependency in .env.example; HSN_CHECKOUT_ENABLED=true alone is insufficient. Test and live Stripe keys must match HSN_CHECKOUT_MODE, and live mode additionally requires customer-support, return-policy, and processing-time text.
The built-in lib/products.ts catalog is demo/reference data only. A real merchant can keep SKUs and prices outside VibeCart and point Core at a merchant-controlled HTTPS JSON feed:
Accepted response shape:
An array of products at the document root is also accepted. id, name, and a non-negative integer priceCents are required; image URLs, when present, must use HTTPS.
The configured source is shared by generic MCP catalog/checkout, UCP catalog, and durable cart repricing. VibeCart validates the document, rejects duplicate IDs, caps response/product counts, blocks redirects/private-network targets, applies a short timeout, and caches healthy catalog data for 30 seconds. If VIBECART_CATALOG_URL is configured and the source is unhealthy or invalid, commerce operations fail closed; VibeCart does not silently fall back to demo products.
Normal SKU and price changes therefore do not require editing VibeCart TypeScript or redeploying Core.
VibeCart does not build a different commerce engine for every model. OpenAI/Codex/ChatGPT, Claude, Gemini, VS Code, Cursor, and other MCP clients connect to the same backend.
See:
docs/integrations/agent-clients.mdintegrations/mcp-clients.jsonhttps://vibecart.vercel.app/mcp-clients.jsonProvider adapters are CI-checked to keep Stripe/database/catalog secrets and duplicated commerce logic out of client configuration.
VibeCart Core is free to self-host. VibeCart Cloud is the optional $29/month managed layer for merchants that want VibeCart to operate the recurring plumbing.
Current Cloud capabilities include:
Cloud workspace: https://vibecart-cloud-uupzkh.v2.appdeploy.ai/
Merchant checkout revenue still settles directly to the merchant's Stripe account. VibeCart takes no percentage of merchant sales.
Without VIBECART_CATALOG_URL, Core uses the fictional reference catalog for development. Configure a merchant catalog URL before treating products/prices as a real store catalog.
Without a Stripe secret, Checkout runs in clearly labeled demo mode. For live payments, configure STRIPE_SECRET_KEY in the hosting provider's secret/environment settings. Never commit secret values.
Useful public endpoints:
/start — merchant/client quickstart/mcp — generic MCP transport/discovery/api/cart — durable cart creation/.well-known/ucp — UCP business discovery/ucp/mcp — UCP-aware MCP transport/mcp-clients.json — machine-readable client compatibility manifest/llms.txt — concise machine-readable integration notes/agents.md — agent-facing guide/api/health — boolean readiness state without secret values/cloud — managed Cloud offerCI pins the released UCP v2026-04-08 source and executes VibeCart's real mappers through the official ucp-schema validator. Cart success/error payloads, catalog responses, discovery, and the private order mapper have release-pinned conformance gates.
VibeCart: commerce infrastructure for every AI agent. Build once. Sell everywhere AI can act.
MIT — free to use, modify, distribute, sublicense, and sell under the license terms.