deloc

How to Share a Dashboard Built with Claude

· Deloc

You built a dashboard with Claude. It works. Someone asks for a link, and you realize it’s stuck on localhost.

Here is how to share a dashboard built with Claude in under a minute.

Deploy from Claude Code

One-time setup. Run this once, ever:

claude mcp add deloc --scope user -- npx -y @deloc/mcp@latest

Then in any Claude Code session, just say:

“Deploy this to Deloc.”

Claude calls the Deloc MCP server, builds the project, uploads it, and hands you back a live URL inside the chat. The link is on your clipboard.

Claude Code deploying a project to Deloc via the MCP server and returning a live URL

Prefer the terminal? Same result, one command:

npx @deloc/cli deploy

What just happened

Deloc looked at your project, figured out the framework, ran the build, and uploaded the output to a CDN. The whole thing took about 30 seconds.

Your URL works on any device. No Git push, no CI/CD, no server to babysit. Send the link to anyone, they open it, they see your dashboard.

First time you deploy, a browser tab opens for sign-in. After that, every deploy is one command.

Three things you probably want next

Password protect it. Tell Claude “password protect my dashboard on Deloc” and it’ll set one through the MCP. Or from the terminal, npx @deloc/cli password your-app-name. Share the URL in Slack, the password in 1Password.

Keep the data fresh. If your dashboard pulls from a warehouse or API, you can wire up auto-refresh so numbers stay current without redeploying. See Build an Auto-Refreshing Dashboard with React, BigQuery, and Deloc for the full pattern.

Update it later. Make changes, run npx @deloc/cli deploy again. Same URL, new content. Anyone with the link gets the new version on refresh.

What if I built it as a Claude Artifact

Artifacts live in Claude’s web UI, so the code needs a home first. Two paths, both fast.

Copy the Artifact source, paste it into a Claude Code chat, and say “set up a Vite project with this code and deploy it to Deloc.” Under a minute.

Or paste it into deloc.dev/paste and let Deloc scaffold and deploy it for you. Same result, no terminal.

Get off localhost

The free tier gives you three live apps for nothing. See pricing for everything else.

Start deploying at deloc.dev.

← Back to blog