Deloc turns anything running on your laptop into a live URL in under two seconds. One command from your terminal, one sentence to your AI — no DNS, no build config, no deploy YAML.
No more "it works on my machine." No more sharing screenshots in Slack because setup is too painful. Deloc gives every prototype a URL, instantly.
Static sites, SPAs, anything that builds to a folder. Deloc detects your stack, runs the build, and serves it from a global edge in one command.
Ask your AI to 'deploy this' and it just does. Deloc exposes an MCP server, a REST API, and typed SDKs so agents can ship without a human in the loop.
CLI, typed SDK, MCP server, REST API — the same two-second deploy, exposed everywhere your workflow happens. Type hints in your editor, tool calls in your chat, one-liners in your terminal.
# installnpm i -g @deloc/cli# deploy current directorydeloc deploy# or one-offnpx @deloc/cli deploy ./dist --prod
Ship from Claude Code or Cursor via MCP. Call Stripe, Slack, or any HTTPS API from your deployed app via Actions. No bespoke integrations to maintain — the proxy handles credentials server-side.
Register the APIs your app needs — Stripe, Slack, your CRM — and call them from the browser with a hook. Deloc proxies every request, injects your credentials server-side, and keeps them out of your bundle.
import { useDelocAction } from "@deloc/client/react";export function AlertButton() {const { invoke, loading } = useDelocAction("slack-alert");return (<buttononClick={()=> invoke({ text: "Q3 deploy complete" })}disabled={loading}>{loading ? "Sending…" : "Send alert"}</button>);}
Free forever for solo projects. Bring a team when you're ready.