Cloudrizz documentation
Cloudrizz lets ChatGPT and Claude build, version, and deploy real apps for you. You describe what you want in chat; your AI assistant uses the Cloudrizz MCP tools to scaffold the app, write its code, run it on a global edge, and ship it to a real URL — with auth, a database, storage, AI, and payments already wired in.
How it works
Cloudrizz is exposed to AI assistants as an MCP (Model Context Protocol) server. Once you connect that server to ChatGPT or Claude, the assistant gains a set of tools — scaffold an app, edit files, save a version, deploy, attach a domain — and calls them on your behalf as you chat.
You don't install an SDK or run anything locally. The assistant does the work through the tools; Cloudrizz builds and hosts the result. These docs are written for that assistant as much as for you — they describe exactly which tool does what, and the order to call them in.
Quickstart
- Connect the Cloudrizz MCP server to ChatGPT or Claude and sign in.
- Ask your assistant to build something. Behind the scenes it calls
create_app_scaffoldto create the app. - As you refine, the assistant uses
edit_fileandsave_versionto write and snapshot the code. - It calls
deploy_appto ship it to a live<slug>.cloudrizz.appURL, thenadd_domainto put it on your own domain.
Keep reading
Add the Cloudrizz MCP server to ChatGPT or Claude and authenticate.
How to describe what you want, iterate, and get good results building apps from chat.
How a Cloudrizz app is laid out: static frontend, api/*.js routes, migrations, and config.
Scaffold, edit, version, preview, and deploy an app end to end over MCP.
Build a widget that embeds on any website with a single <script> tag.
The collaboration workflow: feature branches, preview deploys, pull requests, and AI-assisted merges.
Organizations, owner/admin/member roles, invitations, and who can do what.
Every Cloudrizz MCP tool, grouped by what it does.
The env.* bindings every app gets: database, storage, email, AI, cache, auth, and payments.
Set config and encrypted secrets with set_app_env; the built-in env.APP_ID and env.ENVIRONMENT.
Your app's SQL database via env.DB, migrations, and the reserved _cr_* namespace.
Sign up, sign in, sessions, email verification, and 2FA for your app's users via env.AUTH.
Call OpenAI, Anthropic, and Workers AI from your app via env.AI — managed credits or bring your own key.
Send transactional email from your app via env.EMAIL.
Charge your app's users with Stripe via env.PAYMENTS — checkout, subscriptions, and webhooks.
Store and serve files via env.STORAGE, including public file URLs.
Run code on a schedule with api/cron.js and the cron tools.
Put your app on your own domain with automatic SSL.
Control how your app appears in search engines and to AI assistants via cloudrizz.seo.json.
Expose your own MCP tools from your app so ChatGPT and Claude can connect to it, authenticated as your app's end-users.
Plan limits, hard caps, and rate limits.
Reading deployment logs and fixing common deploy/runtime issues.
Common questions about Cloudrizz.