By Sagar Shankaran, Founder of CallSphere
Stripe Sessions 2026 launched the Agentic Commerce Suite with Link's agent wallet, Machine Payments Protocol, and Shared Payment Tokens. Here is how voice agents now run end-to-end checkout.
Key takeaways
Stripe Sessions 2026 (April 29-30) shipped 288 new products. The most consequential for voice agent teams: the Agentic Commerce Suite, Link's agent wallet, the Machine Payments Protocol, and Shared Payment Tokens. Voice checkout is finally a real workflow.
flowchart TD
Client[MCP client · Claude Desktop] --> MCP[MCP server]
MCP --> Tool1[Tool: Calendar]
MCP --> Tool2[Tool: CRM]
MCP --> Tool3[Tool: KB search]
Tool1 --> SaaS1[(Calendly)]
Tool2 --> SaaS2[(Salesforce)]
Tool3 --> SaaS3[(Notion)]A customer calls a CallSphere voice agent to upgrade their plan. Voice agent reads back the new total, asks for confirmation, and instead of asking for a card number aloud, sends a Link Agent Wallet authorization request to the customer's phone. The customer taps approve in their Stripe Link app. The card never leaves the wallet, the agent never sees the PAN, and the upgrade posts in 6 seconds. PCI scope: zero.
Three new surfaces sit alongside classic Stripe. (1) Link agent wallet via POST /v1/link/agent_authorizations — request payment with a description and amount; customer approves in Link; webhook fires link.agent_authorization.approved. (2) Machine Payments Protocol (MPP) for agent-to-business programmatic transactions — endpoint POST /v1/mpp/intents with shared payment tokens. (3) Shared Payment Tokens (SPTs) that let your agent process card, Klarna, Affirm, or stablecoin payments without holding the underlying credential.
Hear it before you finish reading
Talk to a live CallSphere AI voice agent in your browser — 60 seconds, no signup.
Classic primitives still apply: Customers, PaymentMethods, Subscriptions, and Invoices. The new surfaces compose with them. OAuth is via Stripe Connect for multi-tenant.
CallSphere's Salon GlamBook integrates booking + payment in one voice turn — booking confirmation triggers a Link Agent Wallet auth for the deposit. Healthcare uses Stripe Connect for clinic-scoped billing where copays are charged via SPTs. Sales product upgrades and renewals route through the Agentic Commerce Suite so reps never touch card numbers. Real Estate OneRoof bookings of paid showings use the same flow.
CallSphere runs 37 specialist agents and 90+ tools. Pricing: $149 / $499 / $1499. 14-day trial. 22% affiliate.
POST /v1/link/agent_authorizations with amount, currency, agent_intent (string), and a customer Link identity (email or phone).link.agent_authorization.approved, the agent says "Approved — your renewal is set." On .declined, fall back to a Stripe Checkout link.charge.succeeded, invoice.paid).// Request a Link Agent Wallet authorization from a CallSphere voice turn
const auth = await fetch("https://api.stripe.com/v1/link/agent_authorizations", {
method: "POST",
headers: {
Authorization: `Bearer ${stripeSecretKey}`,
"Content-Type": "application/x-www-form-urlencoded",
},
body: new URLSearchParams({
"amount": "4900",
"currency": "usd",
"agent_intent": "Upgrade to Growth plan annual",
"customer[email]": caller.email,
"metadata[callsphere_call_id]": turn.callId,
}),
});
// Then await link.agent_authorization.approved webhook (typically 8-25 seconds).
Is the Agentic Commerce Suite GA? Yes, as of Stripe Sessions 2026 (April 29-30). Some sub-features (e.g., specific stablecoin support) remain in phased rollout.
Still reading? Stop comparing — try CallSphere live.
CallSphere ships complete AI voice agents per industry — 14 tools for healthcare, 10 agents for real estate, 4 specialists for salons. See how it actually handles a call before you book a demo.
What if the customer is not in Stripe Link? Fallback to a Stripe Checkout URL via SMS. The voice agent says "I am sending you a secure link now" — most customers complete in under 90 seconds.
Does this remove our PCI scope? Reduces it dramatically. With Link Agent Wallet your environment never receives card data. We still recommend SAQ-A.
How does the Google Gemini partnership relate? Stripe and Google announced agentic commerce on Gemini at Sessions 2026. CallSphere's voice agents are runtime-agnostic; the same Stripe primitives work whether your agent is Claude-, GPT-, or Gemini-backed.
How do I try voice checkout? Start a trial, pick a vertical, and connect Stripe in Settings. See pricing.
Written by
Sagar Shankaran· Founder, CallSphere
Sagar Shankaran is the founder of CallSphere, where he builds production AI voice and chat agents deployed across healthcare, hospitality, real estate, and home services. He writes about agentic AI, LLM engineering, and shipping voice agents that handle real calls in production.
See how AI voice agents work for your industry. Live demo available -- no signup required.
Graphiti is the open-source temporal knowledge graph for AI agents in 2026. Learn how bi-temporal memory beats vector RAG for voice agents and long-running LLMs.
Self-correction is now a property of the model, not the framework. What that means for production agent reliability, voice/chat fallbacks, and CallSphere.
How to design a multi-agent system using MCP for tools and A2A for cross-vendor coordination, with a CallSphere voice agent as a participating node.
Offline evals catch regressions before deploy on a fixed dataset. Online evals catch real-world drift on live traffic. You need both — here is how we run them.
The full metric set for evaluating production voice agents — STT word error rate, end-to-end latency budgets, RAG grounding, prosody, and the metrics that actually correlate with retention.
Build a working voice agent with the OpenAI Realtime API + Agents SDK, then bolt on an eval pipeline that catches barge-in failures, hallucinated grounding, and latency regressions.
© 2026 CallSphere LLC. All rights reserved.