The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the CloudeIDE listing page.
Deploy from your terminal — or let your AI coding agent do it.
Website · Quick start · CLI reference · MCP setup · Troubleshooting
CloudeIDE is a cloud development environment that runs in a browser tab — editor, AI agent, sandboxed execution and deployment, with nothing to install.
This repository is the public, developer-facing part: the cloudeide command-line tool, its MCP server, and the documentation for both. It is what you need if you want to drive CloudeIDE from your own terminal, or give an AI coding agent the ability to build and ship on your behalf.
The web IDE itself lives at cloudeide.com.
Two different problems, one binary:
cloudeide deploy . builds the current directory and puts it on a public URL, without opening a browser.The second one is the interesting half. An agent that can only write code has to hand the result to a human to ship. An agent with these tools closes the loop itself.
pnpm add -g cloudeide, yarn global add cloudeide and bun add -g cloudeide all work too. Node 20 or newer.
That's the whole flow. deploy prints a live URL when it finishes.
To let an editor drive it instead:
That writes the correct MCP config for that tool, in the right place, in its own format. It merges into whatever config is already there rather than overwriting it, and it never writes your token into the file — the config is safe to commit.
See the quick start for the longer version.
| Guide | What's in it |
|---|---|
| Quick start | First deploy, start to finish |
| Installation | Package managers, Node versions, upgrading, uninstalling |
| CLI reference | Every command, flag and exit code |
| MCP setup | Cursor, Claude Code and Codex — plus all 13 tools |
| Configuration | Config file, environment variables, precedence |
| Authentication | Tokens, scopes, rotation, what to do if one leaks |
| Examples | CI pipelines, preview deploys, scripting against --json |
| Troubleshooting | Errors by symptom, and what each actually means |
| FAQ | Questions that come up repeatedly |
| Editor | Config written | Scope |
|---|---|---|
| Cursor | .cursor/mcp.json | Project, or ~/.cursor/mcp.json with --global |
| Claude Code | .mcp.json | Project — commit it and your whole team gets the tools |
| Codex | .codex/config.toml | Project, or ~/.codex/config.toml with --global |
Run cloudeide doctor afterwards. It checks each tool's configuration and tells you what's wrong rather than just failing.
Every command takes --json, which prints one JSON document on stdout and nothing else — no progress lines, no colour. Exit codes are specific (3 not authenticated, 7 out of credits, 9 server unreachable), so a script can branch on the failure rather than on a string match.
See examples.
Issues and pull requests are welcome. CONTRIBUTING.md covers how to report something usefully and what to expect from review.
MIT — see LICENSE.