hushdrop
Enables the Amp agent host to publish and manage artifact drops via MCP tools.
Enables GitHub-based authentication for user login and account linking.
Enables magic link authentication for passwordless login.
Allows self-hosting and deployment of the artifact sharing service on Vercel, using Vercel Blob for storage.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@hushdroppublish this HTML page with password"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Hushdrop
Share what your AI builds — on your own domain.
Open-source, self-hosted artifact sharing. Drop a file, an HTML page, or a whole site and get a branded, password-protected (zero-knowledge AES-256) link on your own domain in ~1 second — from your terminal or any AI agent. The open-source alternative to Stacktree.
Live demo → · Docs · Try in browser · vs Stacktree

Quick start
The core way to use Hushdrop is from your agent — it publishes what it builds to your own domain.
Claude Code (recommended — auto-updates via the plugin marketplace):
/plugin marketplace add maxtechera/hushdrop
/plugin install hushdropCursor · Codex · Copilot · Gemini · 50+ Agent Skills hosts:
npx skills add maxtechera/hushdropNo install — open hushdrop.maxtechera.dev/try, drop an HTML file, get a link. No account.
One-off from the terminal — zero install, zero setup, no account:
npx hushdrop report.html # → https://hushdrop.maxtechera.dev/u/xxxx (+ password, copied) — no setup, no accountFree hosted account — persistent links on your own handle (hushdrop.maxtechera.dev/you/<slug>):
npx hushdrop login # passwordless: GitHub or magic link
npx hushdrop report.html # → https://hushdrop.maxtechera.dev/you/report-a1b2 (persistent)Your own domain — self-host on your Vercel Blob (free, MIT, your URL + brand forever):
# one-click: the "Deploy with Vercel" button above auto-provisions a Blob store — then:
npx hushdrop-install # wire your agents + CLI
hush deploy --domain share.yoursite.com # or do it from a local cloneNo dashboard required. Two commands to try; one more to own.
Related MCP server: chatpipe-mcp
Why this exists
Anthropic shipped artifact sharing so teams could hand each other the things they make with AI. It's great — and it's locked to their surface, their domain, their account. Stacktree does the agent-native version, but it's a closed SaaS: your content sits on their servers, custom domains and limits are paywalled, and you can't audit or self-host it.
I make things all day with agents: reports, proposals, guides, dashboards, whole little sites. I wanted
to hand someone a link that's mine — my domain, my brand, my keys — in the time it takes to type one
command, without uploading client work to someone else's server. So hush does exactly that:
terminal-native, zero-knowledge, on your own domain, usable from any agent. MIT.
Hushdrop vs. the alternatives
Hushdrop | Stacktree | send.co | tiiny.host | |
Your own domain | ✅ free | ❌ | ❌ | paid |
Zero-knowledge AES-256 | ✅ | ❌ | files only | ❌ |
Open-source / self-host | ✅ MIT | ❌ | ❌ | ❌ |
CLI + MCP (agent-native) | ✅ | partial | ❌ | ❌ |
Anonymous, no-account drop | ✅ | ❌ | ✅ | ✅ |
Burn-after-read / email-gate | ✅ | ✅ | partial | ❌ |
Price | free / self-host | paid | freemium | freemium |
Full write-ups: vs Stacktree · vs Send · vs ShareDuo
Features
🔒 Zero-knowledge — branding + AES-256 happen client-side; the server only stores ciphertext.
🌐 Your domain, your brand — colors, logo, social cards flow into the unlock gate + previews.
🤖 Agent-native — one CLI command or 9 MCP tools; any agent that runs a shell can publish.
⏱️ Auto-expire & burn-after-read —
--expire 7d,--burn, server-enforced cleanup.📧 Email-gate & revocable share links — restrict by domain, mint/revoke guest links.
📦 Anything static — HTML, Markdown (rendered), PDFs, images, multi-file zips → sites.
🚀 One-click self-host — Deploy to Vercel auto-provisions Blob; no DB to run.
What you can drop
You run | You get |
| Branded, AES-256-locked page at |
| Markdown → rendered, branded HTML page |
| Your own password |
| Branded page, no password — renders for anyone with the link |
| Auto-expire ( |
| Burn-after-read — self-destructs on first view |
| Only viewers with that email domain can open it |
| A branded download page wrapping the file |
| Multi-file static site at |
| Force the slug |
CLI reference
Command | Does |
| Publish (managed / hosted / self-host, auto-detected) |
| Passwordless hosted account (GitHub or magic link) |
| List, delete, garbage-collect drops |
| Mint / revoke a revocable guest link |
| Move an anonymous |
| Manage a hosted drop |
| Configure + self-host on your own domain |
| Re-home hosted drops onto your own Blob |
Use it from any AI agent
npx hushdrop-install registers the drops MCP server into your detected agents (Claude Code, Codex,
Cursor, Windsurf, OpenCode, Amp), puts hush on your PATH, and prints config for GUI clients.
claude mcp add hushdrop -- npx -y hushdrop-mcp # Claude Code
codex mcp add hushdrop -- npx -y hushdrop-mcp # Codex{ "mcpServers": { "hushdrop": { "command": "npx", "args": ["-y", "hushdrop-mcp"] } } }MCP tools (9 — beats Stacktree's 8)
Tool | Purpose |
| Publish raw HTML → branded, password-protected link |
| Publish a local file (optionally a branded download page) |
| Replace a drop's content in place (same URL) |
| List / delete drops |
| Manage a hosted drop |
How it works
Read your file and detect its type.
Brand (HTML) — inject favicon, OG/Twitter card, and a subtle corner badge before
</body>.Encrypt (if locking) — StatiCrypt (AES-256, client-side) behind your branded unlock gate. The badge is baked in before encryption, so it survives.
Upload to Vercel Blob under a clean key.
Serve —
yourdomain.com/<slug>proxies the blob viamiddleware.js, rewriting headers so encrypted HTML decrypts + renders (not downloads) and CSP doesn't block the unlock script. Drops arenoindex, nofollow, noai.Report — URL (+ password) printed and copied to your clipboard.
Serving is a dumb transparent proxy; all branding + encryption happen client-side at upload. The server only ever stores ciphertext.
Self-host
The Deploy button clones the repo and auto-provisions a Blob store (it injects BLOB_READ_WRITE_TOKEN;
the app derives its store from the token, so it just works). Then npx hushdrop-install + hush init --domain share.yoursite.com to point your CLI + agents at your instance. Self-host is token-only, free, unlimited
— no account needed. Full walkthrough in skill/SETUP.md.
Configuration
File | Holds | Committed? |
Presentation — name, colors, owner, social links. Edit to rebrand. | yes | |
| Infra — domain, blob host, Vercel project. Written by | no |
| Your | no |
FAQ
Is it really zero-knowledge? Yes — for locked drops, AES-256 runs in your browser before upload; the server stores only ciphertext.
Managed vs. hosted vs. self-host? Managed = anonymous, 24h, no account. Hosted = free account, persistent links on hushdrop.maxtechera.dev/you/…. Self-host = your own domain + Blob.
Does it need Vercel? Only to self-host. The managed + hosted tiers need nothing but npx.
How is this different from Stacktree? Same agent-native idea, but open-source, self-hostable, your own domain free, zero-knowledge. See the comparison.
Can agents use it without MCP? Yes — it's a single CLI; any agent that runs a shell command can publish.
Is it free? Yes. MIT. Self-host costs only your own (usually pennies) Vercel Blob usage.
Security
Locked HTML is genuinely AES-256 encrypted in the browser — use long passwords; strong against casual access, not a vault.
Raw files are protected by an unguessable slug; use
--page -p <password>for a gated download.Passwords are stored in
~/.hushdrop/manifest.jsonon your machine only — never uploaded.
See SECURITY.md to report a vulnerability.
Contributing
PRs welcome — see CONTRIBUTING.md. It's a few hundred lines of readable Node + HTML, no build step.
MIT · Built by Max Techera · GitHub · Instagram · hushdrop.maxtechera.dev
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/maxtechera/hushdrop'
If you have feedback or need assistance with the MCP directory API, please join our Discord server