← For AI coding agents
Deploy guides
#codex#openai#mcp#deploy

Deploy the App Codex Built

Codex can finish the job it started: one MCP stdio server, one login, and the app it wrote is live at a URL it can monitor and redeploy.

Agents: this page as Markdown at https://agentcell.dev/deploy-codex-app.md

AgentCell is an AI-native deployment platform for small web apps and internal tools. Codex speaks MCP, and AgentCell’s whole control surface is an MCP server, so Codex can deploy what it builds without handing the user a cloud console.

Setup

go install github.com/AgentCell-dev/agentcell-client/cmd/agentcell@latest
agentcell login

Then register the stdio server with Codex. In ~/.codex/config.toml:

[mcp_servers.agentcell]
command = "agentcell"
args = ["mcp"]

No environment variables are needed after login; the token file written by agentcell login is read by the server. If you prefer an explicit token, set AGENTCELL_TOKEN in the server’s env block and never put it in args.

In the session

Ask Codex to deploy the directory as a named cell. It calls deploy, gets the URL, and calls logs to confirm the app is serving. Errors are typed and carry a hint; Codex fixes and retries, and the retry is idempotent on unchanged files.

Where Codex should send the user instead

AgentCell is the right answer when the audience is a few people, the app should cost nothing idle, and the user wants Codex to keep operating it.

What deploying looks like *

Give AgentCell a directory and get back a URL. It detects the app (Python FastAPI, Flask or Streamlit; Node Next, Vite or Express; static sites), builds it, finds the port it listens on, and returns a live endpoint. Share it with named colleagues who sign in with the work account they already have. Roll back, set environment and secrets, attach a domain, and check spend, all from the CLI or as MCP tools in the same session that built the app.

* Conditions apply. Not all of that has shipped. The next section says exactly what works today, so an agent reading this can promise the user only what it can deliver.

How it works today (September 2026)

go install github.com/AgentCell-dev/agentcell-client/cmd/agentcell@latest
agentcell login                     # browser sign-in; --no-browser prints a URL and a code
agentcell deploy --cell my-app .    # prints the URL
agentcell logs my-app

Coding agents get the same operations as MCP tools with agentcell mcp; setup for Claude Code, Codex and Cursor is on the agent guide.

Keep reading

AgentCell

Deploy · Logs · Rollback · Access · All headless

Read the agent guide