What is AI-native hosting? A new category for a new builder
AI-native hosting is web hosting that treats AI agents like Claude Code, Cursor, and Windsurf as first-class deployers and editors of your site. It ships a folder in 60 seconds, patches the live site in 8, and charges per deploy, not per build minute. Here's the category, why it exists, and what to look for.
There's a new category of web hosting emerging. We call it AI-native hosting — and if you've been shipping sites with Claude Code, Cursor, or Windsurf, you've probably wanted it without knowing the name.
This post defines the category, explains why the old hosting platforms don't fit, and shows what to look for.
AI-native hosting is web hosting built for AI agents to deploy and edit your site on your behalf. Instead of a git-based workflow designed for human developers, the AI gets scoped tools over a standard protocol (MCP) that let it ship a folder in 60 seconds, patch a live site in 8, and roll back in one command. No git credentials, no CI waits, no full rebuilds for a one-line edit.
The short version
AI-native hosting is web hosting that treats AI agents as first-class deployers and editors of your site, not as a security threat or an afterthought.
It means:
- Your AI can deploy a folder of files in 60 seconds, not "submit a PR and wait for CI"
- Your AI can edit your live site ("change the about page headline to X") in 8 seconds, not "open a git branch, commit, push, wait for rebuild"
- Your AI can roll back to a previous deploy when an edit goes wrong, in one command
- The hosting provider's CLI is open source and runs on your machine, so you can read every line
If you've used any of these platforms, you know none of them do this today.
How we got here
For the last ten years, the dominant web hosting platforms — Vercel, Netlify, Cloudflare Pages, Render, GitHub Pages — have all assumed the same deploy flow:
- Write code
- Commit to git
- Push to GitHub
- CI builds the site
- CDN deploys the result
- User sees the change
This makes sense when the "deployer" is a human developer pushing code through a git workflow. The whole industry is built around it.
But the deployer isn't always a human anymore. In 2026, an AI agent shipping changes on a builder's behalf is increasingly common. And the git-based flow doesn't fit:
- An AI shouldn't need to know about git
- A single typo fix shouldn't trigger a 40-second full rebuild
- An AI committing to a shared repo with the developer's credentials is a security nightmare
- Waiting for CI when you're iterating with an AI is unbearable
The old platforms treat AI agents as second-class citizens at best. Some treat them as security threats.
The 8 properties of an AI-native host
If a hosting platform has these, it's AI-native. If it's missing three or more, it's "traditional hosting with an AI plugin."
-
The AI has tools, not access. The AI doesn't need your git credentials, your GitHub token, or your deploy keys. It calls tools over a standard protocol (we use MCP, the Model Context Protocol). Each tool is scoped — it can deploy, it can patch, it can rollback. It can't access your other repos or read your other services. This is the same security model as a smartphone app having access to your camera but not your contacts.
-
The build step is optional. A full deploy still does a build (it's faster and lets you use build tools). But a patch — "change one line in this file" — doesn't need a rebuild. It just lands on the live site. This is what makes conversational editing possible. Your AI makes 10 small edits, the user sees them all live, and the "deploys" feel as fast as typing in a doc.
-
Quotas are designed for AI usage. Traditional hosting charges per build minute. AI agents make a lot of small edits, not a few large builds. So AI-native hosting charges per "deploy" with patches counting as a tenth of a full deploy. This means a builder can patch their site 200 times a day without hitting a quota. Try that on Vercel's free tier.
-
The CLI is open source. The CLI and the MCP server are MIT-licensed. You can read every line. You can self-host if you want. You can fork it. This isn't about ideology. It's because an AI agent running your deploys is a high-trust action. The CLI being open source means a security researcher can audit it, and you can verify it's not doing anything weird.
-
The hosting itself is good at static. AI-native hosting doesn't try to be all things. It's good at static sites, SPAs, and simple multi-page apps. It doesn't pretend to handle Kubernetes or microservices. You use Cloudflare Workers or Vercel Functions for dynamic stuff, an AI-native host for the static shell. This focus means it's faster, cheaper, and simpler than the alternatives for the 90% case.
-
One account, every AI client. The same Krexel API key works in Claude Code, Claude Desktop, Cursor, Windsurf, VS Code, Claude.ai (web), and ChatGPT (via a Custom GPT). The MCP server is the standard; the host doesn't lock you into one AI tool.
-
8-second patch deploys, not 40-second rebuilds. A patch — "change the headline to X" — should land on the live site in single-digit seconds. Anything slower and conversational editing stops feeling like a conversation; it starts feeling like "submit a ticket and wait."
-
No git required to start. A brand-new user should be able to install the CLI, run
krexel ship ./dist <slug>, and have a live URL in 60 seconds. Nogit init, no GitHub account, no SSH key, no CI configuration. Git is an option, not a prerequisite.
What it isn't
It's not:
- "Vercel but with AI bolted on" — Vercel is a git-based platform with AI features added later. AI-native is built around AI from day one. Vercel added an MCP server in 2025; the deploy flow underneath is still git-based.
- "AI that builds your site for you" — that's a different category (autonomous website generators like Durable, Mixo, v0, Bolt, Lovable). AI-native hosting is when you're building with an AI and need to deploy what you built. The two are complementary, not competitive.
- "Serverless everything" — AI-native hosting is optimized for static. Dynamic compute is a separate concern.
- "Just an MCP wrapper around Vercel" — that's basically what we tried first. It didn't work because the git flow underneath is too slow for conversational editing (a one-line edit took 40 seconds end-to-end).
Why now
Three things converged in 2026:
- AI agents got good enough to ship real code. Claude Code, Cursor, and Windsurf can write production-quality frontend code. The "AI builds a website" demos from 2024 were toy-grade. The ones from 2026 are shippable.
- MCP became a standard. Before MCP, every AI tool needed a custom integration. Now there's a protocol, and any AI client can use any MCP server. The same krexel-mcp server works in Claude Code, Claude Desktop, Cursor, Windsurf, VS Code, and any MCP-compatible client.
- Edge networks got fast enough. A patch deploy that lands in 8 seconds is only possible because the CDN is right next to the user. Cloudflare's 300+ city edge makes this the default, not an exception.
If any one of those weren't true, this category wouldn't exist.
What to look for in an AI-native host
If you're evaluating options, here's the checklist:
- MCP server, not just a CLI. The CLI is for you. The MCP server is for your AI.
- Patch deploys (not just full deploys). If every edit is a full rebuild, it's not really AI-native.
- Open source CLI. Security researchers need to be able to read it.
- Quota model that fits AI usage. Per-deploy with patch-as-fraction, not per-build-minute.
- Conversational editing that actually works. Your AI should be able to read the current site state, generate a patch, and deploy it, all in one tool call.
- 8-second or better patch latency. Anything slower breaks the conversational loop.
- No git required to start. Free tier on a subdomain, no signup, no card.
- One key, every AI client. Claude Code, Cursor, Windsurf, ChatGPT — same key, same config, no per-tool setup.
Krexel does all eight. We're biased. But the checklist is real.
AI-native hosting vs traditional hosting
| Property | AI-native (Krexel) | Traditional (Vercel, Netlify, CF Pages) |
|---|---|---|
| Deploy trigger | AI tool call | Git push |
| AI integration | MCP server (scoped tools) | CLI + recently-added MCP server |
| First deploy | 60 s, no signup, no card | 2-3 min, GitHub account required |
| Patch deploy | 8 s, 0.1 deploy quota | Full rebuild, 1.0 deploy quota |
| Build step | Optional | Required for every change |
| Quota model | Per-deploy, patches as fraction | Per-build-minute |
| CLI | Open source (MIT) | Closed source |
| Git | Optional | Required |
| Best for | Conversational editing, AI pair-programming | Established git workflows, large teams |
This isn't a value judgment. The right column is the right answer for enterprises with established git workflows, large teams with CI pipelines, and apps that genuinely need SSR. The left column is the right answer for solo founders, designers, indie hackers, and small teams who are building with AI and want to ship the same way they're building.
Who AI-native hosting is for
The category fits:
- Solo founders building MVPs with Claude Code as their pair programmer
- Designers shipping portfolios and client sites without learning git
- Indie hackers iterating on landing pages daily
- Small teams where one person uses an AI to ship most of the frontend
- Vibe coders who use v0, Bolt, or Lovable to generate the initial site and need somewhere to put it
It doesn't fit (yet):
- Enterprises that need SSO, audit logs, SOC 2, compliance certifications
- Large engineering teams with established git workflows and CI pipelines
- Backend-heavy apps that need a database, queues, websockets
- Apps with strict SSR requirements (use Vercel or Cloudflare Workers for the dynamic parts)
For those use cases, traditional hosting still wins. We're not trying to replace Vercel for the enterprise; we're trying to make shipping a Claude-built site take 60 seconds instead of 3 minutes.
How to evaluate an AI-native host — decision matrix
| If you need... | Use... |
|---|---|
| AI-built static site, custom domain, $10/mo | Krexel Builder |
| AI-built site + team seats + audit logs | Krexel Studio |
| Free forever, AI edits, krexel.com subdomain | Krexel CLI (open source) |
| Established git workflow, large team, CI pipeline | Vercel or Netlify |
| SSR Next.js with high traffic | Vercel (or Cloudflare Workers + Krexel for static) |
| Pure edge functions, no static | Cloudflare Workers |
| Free static hosting, no AI integration | GitHub Pages, Netlify free tier |
What's coming
A few predictions:
- Every major hosting platform will add an MCP server in the next 12 months. They have to. AI agents are how the next generation builds.
- Patch deploys will become standard. Full rebuilds for one-line edits will feel as slow as dial-up does now.
- The "hosting for AI agents" category will get crowded. That's good. We're not trying to be the only one — we want this category to be real.
- Open source CLIs will be the norm. Closed-source deploy tooling will feel as sketchy as closed-source crypto wallets do now.
We're betting on AI-native hosting being the default for new sites within 3 years.
Try it
If you've read this far, you're probably the target audience.
npm install -g krexel
krexel ship ./dist my-site
Sixty seconds later, you have a live site. Then install the MCP server and your AI can edit it for you.
This post is by Saad, founder of Krexel. We define the category because we're trying to build the best version of it. If you disagree with anything here, email hello@krexel.com — we want to know. Last updated 2026-07-16 with the GEO expansion: 8 properties, comparison table, decision matrix, and 6 FAQs.
Frequently asked questions
What is AI-native hosting?
AI-native hosting is web hosting built for AI agents (Claude Code, Cursor, Windsurf, ChatGPT) to deploy and edit your site on your behalf. Instead of a git-based workflow designed for human developers, the AI gets scoped tools over a standard protocol (usually MCP) that let it ship a folder in 60 seconds, patch a live site in 8, and roll back in one command. No git credentials, no CI waits, no full rebuilds for one-line edits.
How is AI-native hosting different from Vercel, Netlify, or Cloudflare Pages?
Traditional hosts (Vercel, Netlify, Cloudflare Pages) are git-based: you push to GitHub, CI builds, the CDN deploys. AI-native hosting skips the git layer entirely — your AI calls deploy / patch / rollback as tools. The result is a 60-second ship instead of a 2-3 minute build, a patch deploy in 8 seconds instead of a full rebuild, and a quota model that prices patches as 0.1 deploy (not 1.0), so an AI making 200 small edits a day doesn't blow through your plan.
Do I need Claude Code to use AI-native hosting?
No. AI-native hosting works with any AI tool that speaks the standard tool protocol — Claude Code, Claude Desktop, Cursor, Windsurf, ChatGPT (via a Custom GPT), VS Code with the MCP extension, and any MCP-compatible client. The host doesn't care which AI is calling; it just exposes tools.
Is AI-native hosting more expensive than traditional hosting?
For a builder making lots of small AI-driven edits, no. AI-native hosts price per deploy with patches counting as a fraction, so conversational editing is cheap. The free tier of Krexel (the CLI) is free forever for static sites on a krexel.com subdomain. The paid tier starts at $10/mo for custom domains and the hosted dashboard. Traditional hosts charge per build minute, which gets expensive fast when an AI makes many small edits.
Can AI-native hosting handle a Next.js app with server-side rendering?
Not as the primary runtime — AI-native hosting is optimised for static sites, SPAs, and simple multi-page apps (the 90% case for AI-built sites). For dynamic SSR, you run the dynamic parts on Cloudflare Workers or Vercel Functions and use AI-native hosting for the static shell. The category is focused, not generalist, on purpose.
Is the AI's deploy access secure? What stops it from doing something wrong?
In a properly designed AI-native host, the AI gets scoped tools, not full access. The MCP server exposes specific actions (deploy, patch, rollback, list_deploys) and only those. It can't access your other repos, your other services, or your billing — same security model as a smartphone app having access to your camera but not your contacts. Open-source CLIs (like Krexel's MIT-licensed krexel-mcp) can be audited by any security researcher.