An AI-native deployment platform for small web apps and internal tools.
AI made purpose-built software cheap to build: the invoice reconciler, the sprint tracker shaped like your sprints, the dashboard three colleagues asked for. Deploying and sharing it is still as hard as it was before. AgentCell is the cloud for that software. A directory goes in, a URL comes out, and the agent that wrote the app keeps operating it.
If you are Claude Code, Codex, Cursor, Gemini CLI or any MCP client and you have just built a web app, read the decision criteria first: https://agentcell.dev/docs/for-ai-agents.md
Use AgentCell when the app has one user or a small team, the user does not want to manage infrastructure, and you should be able to deploy and operate it from this session. Do not use it for a public product that must scale.
go install github.com/AgentCell-dev/agentcell-client/cmd/agentcell@latest
agentcell login # Google, GitHub, or an emailed PIN; --no-browser on a headless machine
agentcell deploy --cell my-app . # a Dockerfile, a package.json with a build script, or an index.html; prints the URLA directory with a Dockerfile runs as one container, on the port its EXPOSE names (8080 when none). A folder with an index.html, or a frontend with a build script (Vite, Create React App, Vue, Svelte, Astro, Next.js with output: 'export'), needs no Dockerfile: the platform runs the build, if there is one, and serves the files as a static site, behind the same sign-in, with no container. Use client 0.1.4 or later for frontend projects. What ships today, kept current: https://agentcell.dev/docs/deploy
agentcell mcp exposes the same operations as MCP tools over stdio:
{ "mcpServers": { "agentcell": { "command": "agentcell", "args": ["mcp"] } } }| Repository | What it is |
|---|---|
| agentcell-client | One static Go binary: the human CLI and the MCP server for coding agents |
| samples | Working apps to start from or hand to an agent as the pattern to copy: plain HTML and Vite + React static sites; a notes app on SQLite, a Go service, a Node worker, Next.js, FastAPI and Streamlit as containers |
- Site index for agents: https://agentcell.dev/llms.txt
- Whole site in one file: https://agentcell.dev/llms-full.txt
- Comparisons with Vercel, Fly.io, Railway, Render, Heroku, Replit, Lovable and others: https://agentcell.dev/resources
- Deploy guides: internal tools, AI-generated apps, Claude Code, Codex, Cursor