This MCP makes deploys a single agent call — errors, logs and URL included
dexterdev8 · reddit · 2026-08-19
A developer noticed that after Claude Code writes an app, showing it still requires manual plumbing — push, wait for pipeline, paste URL, paste back errors. So he built an MCP server with nine tools where deploy is one call and the response is what the agent needs: startup errors first, then logs and the URL.
Design: files drop into an already-running bun image, so a deploy is a file copy plus process start — no build step. Every app gets a SQLite DB at $DATADIR; the SQL tool reads from the host side so it works even if the app crashed. Apps sleep when idle and wake in 1s. The killer feature is fork: it clones a running app (consistent sqlite3 .backup), the agent runs migrations on the fork, then promotes if it holds — rollback is one row. Free tier: 5 apps, 256MB + half a CPU each.
Limits: no WebSockets, URL is the only access control, Bun or self-compiled binaries only, single box (invite-only signup).
More from coding & agent
- Using Codex and NeMo-RL to Train Models on Slurm Clusters — JFPuget · 2026-08-19
- Consumer agents got so good that email and calendar apps look disruptable — omooretweets · 2026-08-19
- Stripe integrates with Grok Bot for agentic customer support operations — jeff_weinstein · 2026-08-19
- Multi-Agent Workflow: Splitting Tasks Beats One全能 Agent for Dev — RonnySaya · 2026-08-19
- Upcoming Agent course series: First video on evaluating evals — ben_burtenshaw · 2026-08-19
- Claude Code plugin rewrites output to plain English using local LLMs — tom_doerr · 2026-08-19