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).

Original post →

More from coding & agent

coding & agent channel →