News

Cloudflare's Temporary Accounts Let AI Agents Deploy Without Signing Up

Cloudflare introduces temporary accounts for AI agents, allowing them to deploy Workers via Wrangler with a --temporary flag, no human sign-up required. Accounts last 60 minutes and can be claimed.

July 2, 2026· 2 min read· Source: The Cloudflare Blog
Cloudflare's Temporary Accounts Let AI Agents Deploy Without Signing Up

Cloudflare has rolled out temporary accounts for AI agents, solving a pain point that's been nagging every developer who's tried to automate deployments: the browser-based sign-up wall. Agents can now run wrangler deploy --temporary and ship a Worker without ever creating a Cloudflare account. The deployment stays live for 60 minutes; if a human claims it within that window, it becomes permanent. Otherwise, it self-destructs.

Why This Matters

Background AI sessions—agents running without a human in the loop—are becoming the norm. Any auth step that requires a browser, copy-paste, or MFA prompt is a hard stop for an agent. Throwaway deployment targets are exactly what agents need for their tight write → deploy → verify loops. Cloudflare's move removes a friction point that could otherwise push agents to competing platforms.

How It Works

The mechanism is built into Wrangler, Cloudflare's CLI. When an agent runs wrangler deploy without being authenticated, Wrangler now outputs a message suggesting the --temporary flag. The agent picks it up, re-runs with the flag, and Cloudflare provisions a temporary account, issues an API token, and returns a claim URL. The agent can then iterate—redeploying multiple times within the 60-minute window—without any human intervention.

Claiming the Account

At any point, a human can click the claim link, sign up or sign in, and take permanent ownership of the account—including any Workers, databases, or bindings created during the session. If unclaimed after 60 minutes, everything is deleted automatically.

Broader Context

This isn't Cloudflare's first step toward agent-friendly onboarding. They recently partnered with Stripe on a protocol that lets agents provision Cloudflare accounts end-to-end, and collaborated with WorkOS on auth.md, an OAuth-based standard for agent account creation. Temporary accounts are another piece of the puzzle, making Cloudflare a more natural target for autonomous coding agents.