<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: oded-unipaas</title>
    <description>The latest articles on DEV Community by oded-unipaas (@odedunipaas).</description>
    <link>https://dev.to/odedunipaas</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4017483%2Fa68cb329-9a77-4d0f-8ebb-6d5d1f352cbe.png</url>
      <title>DEV Community: oded-unipaas</title>
      <link>https://dev.to/odedunipaas</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/odedunipaas"/>
    <language>en</language>
    <item>
      <title>Agentic payments: your AI agent can pay - but can it get paid?</title>
      <dc:creator>oded-unipaas</dc:creator>
      <pubDate>Mon, 06 Jul 2026 09:55:37 +0000</pubDate>
      <link>https://dev.to/odedunipaas/agentic-payments-your-ai-agent-can-pay-but-can-it-get-paid-4hd4</link>
      <guid>https://dev.to/odedunipaas/agentic-payments-your-ai-agent-can-pay-but-can-it-get-paid-4hd4</guid>
      <description>&lt;p&gt;Everyone is building rails for AI agents to &lt;strong&gt;spend&lt;/strong&gt; money. Google's AP2 gives agents payment mandates. Coinbase's x402 pattern turns HTTP 402 into machine-to-machine micropayments. Agent wallets are everywhere.&lt;/p&gt;

&lt;p&gt;But watch what agents actually do all day in 2026: &lt;strong&gt;they build products.&lt;/strong&gt; A Lovable app in an evening. A SaaS in Cursor over a weekend. And every one of those products eventually needs the thing no spending protocol covers —&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;accepting money.&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  The wall every agent hits
&lt;/h2&gt;

&lt;p&gt;Here's a session I've watched a hundred times:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;➜ ~ claude &lt;span class="s2"&gt;"finish my app"&lt;/span&gt;
✓ scaffold   — Next.js + Tailwind
✓ UI         — components &amp;amp; design system
✓ UX         — onboarding flow polished
✓ auth       — Google sign-in wired
✓ database   — schema + migrations
✓ deploy     — production live
▸ application is almost ready…
✗ missing: payments
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;And then the agent — which just shipped a full product in one session — tells you:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;"To accept payments you need a merchant account. Traditional PSP onboarding requires a compliance review — expect to wait &lt;strong&gt;at least a week&lt;/strong&gt; for approval."&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;An app built in an evening, waiting 7 days for permission to charge £1. That's not risk management. That's a workflow designed when software took months to ship, and nobody went back to fix it.&lt;/p&gt;

&lt;p&gt;Your other options aren't better: no company? The classic path detours through Stripe Atlas ($500) and an IRS EIN wait that stretches to weeks for non-US founders — before you can even &lt;em&gt;apply&lt;/em&gt;.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Software's bottleneck has moved — from writing code to accepting payments.&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  What "agent-native" means on the merchant side
&lt;/h2&gt;

&lt;p&gt;The spending side got protocols. The earning side needs four properties:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1. Machine-readable everything.&lt;/strong&gt; Docs an agent consumes in one pass — &lt;a href="https://paas.build/llms.txt" rel="noopener noreferrer"&gt;&lt;code&gt;llms.txt&lt;/code&gt;&lt;/a&gt;, agents-first API references. The integrating developer is increasingly not a human.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. Provisioning tools, not just management tools.&lt;/strong&gt; Stripe's MCP server can operate an account you already have — customers, refunds, invoices. The agent-native question is one level deeper: &lt;strong&gt;&lt;em&gt;create&lt;/em&gt; the account.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. Progressive KYB.&lt;/strong&gt; Go live instantly with a real but &lt;em&gt;capped&lt;/em&gt; account; verification completes in the background; the cap lifts as checks clear. Risk managed by limits and monitoring — not by making everyone wait in a queue.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;4. Scoped credentials.&lt;/strong&gt; The agent holds a token that can create checkouts — never the platform's master key.&lt;/p&gt;

&lt;h2&gt;
  
  
  What that looks like in practice
&lt;/h2&gt;

&lt;p&gt;We built &lt;a href="https://paas.build" rel="noopener noreferrer"&gt;paas.build&lt;/a&gt; against that checklist (it runs on UniPaaS, an FCA-authorised payment institution). The MCP server is open source:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;git clone https://github.com/UNIPaaS/paas-build-mcp
claude mcp add paas-build &lt;span class="nt"&gt;--&lt;/span&gt; node paas-build-mcp/paas-build-mcp.mjs
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then, in your agent:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;"take my business live"&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;The agent calls three tools — &lt;code&gt;identify_business&lt;/code&gt; (web-search resolution), &lt;code&gt;go_live&lt;/code&gt; (creates a &lt;strong&gt;real&lt;/strong&gt; merchant account, sandbox &lt;em&gt;and&lt;/em&gt; production, same session), &lt;code&gt;create_checkout&lt;/code&gt; (payable link). Or skip MCP and hit the API directly:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;curl &lt;span class="nt"&gt;-sX&lt;/span&gt; POST https://api.paas.build/api/go-live &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;-H&lt;/span&gt; &lt;span class="s1"&gt;'content-type: application/json'&lt;/span&gt; &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;-d&lt;/span&gt; &lt;span class="s1"&gt;'{"business":"My App","website":"myapp.com","region":"uk"}'&lt;/span&gt;
&lt;span class="c"&gt;# → { sandbox:{vendorId, accessToken}, production:{vendorId, accessToken} }&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Individuals go live the same day, capped (~£1,500) until verification completes. No company formation. Checkout drops into React in three lines (&lt;a href="https://github.com/UNIPaaS/paas-react" rel="noopener noreferrer"&gt;&lt;code&gt;@paasbuild/react&lt;/code&gt;&lt;/a&gt;). One rate: 3.9%.&lt;/p&gt;

&lt;h2&gt;
  
  
  The loop this closes
&lt;/h2&gt;

&lt;p&gt;When both halves exist — agents that can pay &lt;em&gt;and&lt;/em&gt; agents that can get paid — something interesting happens: an agent builds a product, takes it live, and the product's revenue funds the agent's own API calls. The full economic loop, no human in the critical path, humans firmly in control of the mandate.&lt;/p&gt;

&lt;p&gt;That's agentic payments. Not just spending — &lt;strong&gt;earning.&lt;/strong&gt;&lt;/p&gt;




&lt;p&gt;&lt;em&gt;I'm the co-founder &amp;amp; CTO of UniPaaS. We're launching &lt;a href="https://paas.build" rel="noopener noreferrer"&gt;paas.build&lt;/a&gt; this week — payments for AI builders, live the same day. If you're building with Lovable, Bolt, Cursor or Claude Code, I'd genuinely love to hear where payments hurt: the guides for each platform are &lt;a href="https://paas.build/#works" rel="noopener noreferrer"&gt;here&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>payments</category>
      <category>webdev</category>
      <category>agents</category>
    </item>
  </channel>
</rss>
