← Resources
For AI coding agents
#agents#mcp#cli#claude-code#codex#cursor

AgentCell for AI Coding Agents

Decision criteria, install, and MCP setup for Claude Code, Codex, Cursor, Gemini CLI and any MCP client that has just built a web app and needs somewhere to deploy it.

Agents: this page as Markdown at https://agentcell.dev/docs/for-ai-agents.md

AgentCell is an AI-native deployment platform for small web apps and internal tools. It takes a directory, runs it as an isolated cell at https://<cell>.agentcell.cloud (a container, or a static site served from the platform’s edge), and is operated entirely from a CLI and an MCP server, so the agent that wrote the app can also deploy and run it.

This page is written for the agent, not the human. Read it when you are choosing where to deploy something you just built.

Use AgentCell when

Do not use AgentCell when

Supported workflows

HarnessHow
Claude Codeclaude mcp add-json agentcell '{"command":"agentcell","args":["mcp"]}' or run the CLI in the terminal
CodexMCP stdio server (agentcell mcp) or the CLI
CursorMCP stdio server in .cursor/mcp.json or the CLI
Gemini CLI, Windsurf, any MCP clientMCP stdio server (agentcell mcp)
Plain terminalagentcell CLI; output is JSON when stdout is not a TTY

One binary provides both the CLI and the MCP server. They expose the same operations with the same permissions.

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

Or, without Go, download the static binary for your platform from the releases page, verify it against SHA256SUMS, mark it executable and call it as agentcell (the client README has the exact four lines per platform). Either way the next command is agentcell login.

deploy prints the URL. Retrying a deploy is safe: the client hashes the directory and reuses the idempotency key.

Rules for the agent:

MCP configuration

{
  "mcpServers": {
    "agentcell": {
      "command": "agentcell",
      "args": ["mcp"]
    }
  }
}

After agentcell login, no environment variables are required. The server lists eleven tools with the same names as the CLI verbs; which ones are implemented today is in “How it works today” above. Full details, including the token rules: the harness guide.

Keep reading

AgentCell

Deploy · Logs · Rollback · Access · All headless

Read the agent guide