Free tier · no credit cardA backend for AI builders who don't write code
Cradler gives your AI-built app a database, file storage for images, videos and audio, a typed TypeScript SDK, an MCP server, and an Agent Skill — the whole backend, in one service. No SQL. No schema design. No migrations. Made for people who build apps with Cursor, Claude Code, v0, Lovable, and Bolt — and never want to touch a database.
The entire backend, in a few lines
One SDK handles data, files, and everything between. Your AI tool writes these calls for you in a single prompt — you never see SQL, never edit a schema, never write a migration.
// Save data — no SQL, no schema. The table appears on first write.
await cradler.from("posts").insert({ title: "Hello", published: true });
// Upload an image — compressed on-device, served from a global CDN
const { path } = await cradler.storage.upload("covers/sunset.jpg", file, { public: true, compress: true });
// Get a fast, edge-resized thumbnail URL — no extra upload
const thumb = await cradler.storage.getPublicUrl(path, { width: 300 });
// Read it back, with filters and ordering, fully typed
const { rows } = await cradler
.from("posts")
.select()
.eq("published", true)
.order("createdAt", { desc: true });
A backend for AI apps you don't need to be a developer to use
You build apps with Cursor, Claude Code, v0, Lovable, or Bolt. You describe what you want, and the AI writes the code. The one place that still breaks is the backend — the moment you need to store data or let users upload a file, you hit databases, SQL, and migrations. Cradler removes that wall, so you and your AI tool can finish the app without learning any of it.
One SDK for data and files
Data and file storage live in the same SDK. Save any record, upload any image, video, audio or PDF through `cradler.from` and `cradler.storage`. One project, one set of keys, one bill — no second storage service to sign up for. Public files are served over a global CDN with automatic image resizing, so they load fast anywhere.
The schema builds itself
Save a record and Cradler creates the table. Add a new field and Cradler adds the column. No SQL, no migration files, no ALTER TABLE — the database keeps up with your app on its own, instead of making you maintain it like Supabase and Firebase do.
Designed for AI to wire up
A typed SDK, per-project generated TypeScript types, an llms.txt, an MCP server, and an Agent Skill. AI coding tools have everything they need to write your integration on the first try — no rounds of fixes.
See your data right in the dashboard
Browse any table in the dashboard, with image and video columns rendered inline. Click any cell for a full preview. No external storage viewer, no separate schema browser.
A Supabase and Firebase alternative for non-coders
Supabase and Firebase expect you to design the schema, write a SQL migration every time the app changes a field, and write SQL RLS policies to control access. Cradler does all of that for you — and adds a typed SDK, an MCP server, and an Agent Skill so your AI tool gets the integration right the first time. The database stops being a thing you and your AI have to learn.