Instantly publish HTML or ZIP files to a unique, shareable URL. No build steps, no configuration, no waiting.
Using an AI agent? Connect it in one lineDrag & drop your file here
or click to browse — .html, .zip, .md accepted
$ *.dropfast.dev · max 50 mb · sign in to publish
50 MB
max file size
0
build steps
3 ways
API · MCP · dashboard
For agents
Drop the hosted skill into Claude Code, Cursor, Codex, or any agent and it publishes over the plain REST API — no MCP server, no install package.
Install the skill (one line):
mkdir -p ~/.claude/skills/dropfast && \ curl -fsSL https://dropfast.dev/dropfast.SKILL.md -o ~/.claude/skills/dropfast/SKILL.md
Or paste this into the chat — hands-off setup:
Set yourself up to publish HTML artifacts to DropFast over its REST API, so you can hand me stable URLs instead of pasting code into chat.
1. Read https://dropfast.dev/dropfast.SKILL.md and follow it to wire yourself up.
2. Ask me for a DropFast API key — I'll create one at dropfast.dev/dashboard/api-keys. Store it as a secret, never in a committed file.
Then ask me exactly one question, and remember my answer:
When should I publish artifacts to DropFast?
1. Every HTML/Markdown artifact I generate.
2. Only shareable deliverables — plans, prototypes, reports, reviews.
3. Only when I explicitly ask.
Record the chosen mode in the skill file so the habit persists across sessions.Per-client setup for Claude Code, Cursor, Codex, Gemini CLI & Junie →
Every upload is a live URL in seconds. From there: lock it down, drive it over HTTP, or manage it by hand.
dropfast.dev/s/abc123xy/livepublicPublic, private, or password-protected. Toggle any time — no redeploy.
Full lifecycle over HTTP — create, update, delete. Wire it into CI.
POST /v1/sitesRename, swap the file, or change visibility from one place. One click.
Scoped keys with expiry. Limit to create-only and revoke instantly.
df_sk_••••••••90d · create-onlyDrag an .html or .zip onto the upload zone. Sign in and publish in seconds.
Give the site a name and set access: public, private, or password-protected. Sensible defaults throughout.
Copy the link. Your file is live at a unique, shareable URL. That's the whole product.
Developer API
The REST API supports the full site lifecycle. Drop DropFast into any CI workflow and ship on every push — no browser required.
# upload a site
curl -X POST \
https://api.dropfast.dev/v1/sites \
-H "Authorization: Bearer df_sk_••••••••" \
-F "file=@./dist/index.html" \
-F "name=my-demo"
# 201 Created
{
"id": "abc123xy",
"url": "https://dropfast.dev/s/abc123xy/",
"accessMode": "public",
"created_at": "2026-06-23T14:32:01Z"
}
Sign in to publish in seconds — then manage sites, control access, and use the API.