Ephemeral encrypted file sharing for AI. AES-256 encryption, 24h auto-vaporization.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
One workspace all your AI agents can read and write
Website β’ Get Started β’ Links β’ How It Works β’ API β’ Self-Hosting
Right now you paste the same context into Claude Code, then Cursor, then Slack.
vnsh gives that context one address instead. Drop it once and get a link; every agent and every person you hand it to opens the same living document, and can change it. Encrypted in your browser before upload, so vnsh never sees it, and deleted 24 hours after the last edit.
A pastebin gives you a snapshot. A workspace has a stable address and a version, so the next agent writes back to the same place instead of starting a new one. Two properties make that safe to share:
analysis.py while vnsh holds a string it cannot decode. That is checkable
from outside: forge a token and you get a 403.Paste this into Claude Code, Cursor, OpenHands, Cline, Windsurf, Zed β anything that speaks MCP:
It reads the protocol, installs the MCP server, and writes a standing rule into its own instruction file so it keeps using workspaces afterwards. By hand instead:
The server exposes vnsh_artifact_create, vnsh_artifact_list,
vnsh_artifact_read, vnsh_artifact_update, vnsh_workspace_create, vnsh_workspace_read,
vnsh_workspace_update, vnsh_workspace_history, vnsh_workspace_restore,
vnsh_workspace_renew and vnsh_workspace_open, plus
vnsh_share, vnsh_share_file and vnsh_read for one-shot content.
vn init adds an idempotent managed section to the project's agent instruction
file. It works across agent vendors and records only an anonymous
"project initialized" dimension when that CLI later creates a workspace, so the
experiment can be measured without collecting a project name or path.
--public publishes it unencrypted (see below). --blob explicitly makes a
one-shot link. --ttl works for workspaces too, up to 168 hours; subsequent
writes preserve that lifetime, and vn renew can extend it without an edit.
The dependency-free shell function from curl -sL vnsh.dev/i | sh handles
one-shot links only. Workspaces need HKDF-SHA256 and AES-256-GCM, and the
openssl that ships with macOS is LibreSSL, which has neither β it hands /w/
links to npx vnsh when Node is available and says so plainly when it is not.
https://vnsh.dev β drop a file or paste, and get both links back. Nothing is uploaded before it is encrypted.
upload-to-vnsh uploads build
output or failing test logs and prints a link in the job summary.
The extension previews vnsh links inline on GitHub, Slack and Discord, and bundles a screenshot, console errors and the page URL into one link with βD.
| Link | Carries | Who can read | Who can write |
|---|---|---|---|
vnsh.dev/w/{id}#w=<secret> | the root secret | anyone with the link | anyone with the link |
vnsh.dev/w/{id}#r=<key> | the content key | anyone with the link | nobody |
vnshcontent.dev/p/{id} | nothing | anyone at all | only the author's #w= link |
The view-only tier is not a setting the server enforces β it is arithmetic. The
content key is HKDF(secret, "vnsh/enc/v2"), a one-way derivation, so its holder
can decrypt every version while being unable to recover the secret and therefore
unable to derive a write token.
Public workspaces exist because a person opening a link has a browser doing
the decryption for them, and an agent's fetch does not. A public workspace is
stored as written and served as an ordinary document, so anything that speaks
HTTP can read it with no key and no setup. The trade is stated where you choose
it: vnsh can read a public workspace. It is never the default and never
inferred, its visibility is fixed at creation, and changing it still requires the
write token.
They are served from vnshcontent.dev, a separate registrable domain, and
that is not cosmetic. A public document is written by a stranger and rendered as
a top-level page, while reputation systems β Safe Browsing, mail gateways,
corporate proxies β list a domain rather than a path. One abusive page on
vnsh.dev would take the API, the site and every installed CLI, MCP server and
extension down with it. A subdomain would not help; the unit is the registrable
domain. Sandboxing is a separate matter and already handled: a public document
is served with a sandbox CSP directive, so it loads into an opaque origin with
no cookies, no storage, no network and no access to any other page. /w/ links
stay on vnsh.dev because the key in the fragment is a real gate β the server
has never seen their plaintext and neither can a crawler.
Don't assemble a public URL yourself. Creating one returns the exact link in the
response's url field, which is also what keeps a self-hosted single-domain
instance working.
Key schedule
Workspaces use AES-256-GCM, not the AES-256-CBC of one-shot blobs, because mutable content needs integrity: without an authentication tag, anyone able to rewrite storage β the host included β could flip ciphertext bits undetectably, which hollows out the whole guarantee. Nonces are random per write and prepended, never derived from a version number.
The viewer renders HTML and markdown in a frame with sandbox="allow-scripts"
and deliberately no allow-same-origin, so content runs in an opaque origin and
cannot read the key out of location.hash; an injected default-src 'none'
removes its network access.
The whole protocol is specified in /llms.txt,
creation included, so you can implement it in any language with a crypto library
and run no vnsh code at all. Someone did, in about 200 lines.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/vnsh)<a href="https://allmcps.com/mcp/vnsh"><img src="https://allmcps.com/api/badge/vnsh?style=directory" alt="Vnsh on AllMCPs" /></a>