vnsh-mcp
Provides a GitHub Action to automatically upload CI logs on failure and post a secure vnsh link to the PR for debugging.
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., "@vnsh-mcpshare the contents of crash.log"
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.
What is vnsh?
Stop pasting walls of text into Claude. Pipe your logs, diffs, and images into a secure, host-blind URL. The server sees nothing. The data vaporizes in 24 hours.
# Pipe anything to vnsh, get a secure link
git diff | vn
# https://vnsh.dev/v/aBcDeFgHiJkL#R_sI4DHZ_6jNq6yqt2ORRDe9QZ5xQB6hIRLWHVFa8v8Handles any context your AI needs:
πΌοΈ Screenshots β UI bugs, error dialogs, terminal output
π Logs β 5000+ lines of server errors (too long for copy-paste)
π Git Diffs β Complex PR reviews, multi-file changes
π¦ Binaries β PDFs, CSVs, config files, database dumps
π§ Debug Context β Stack traces, environment dumps, crash reports
Related MCP server: Prismism MCP Server
Philosophy
"Built for the ephemeral nature of AI workflows. Once your session is done, the data should be too."
Unlike Dropbox or pastebins, vnsh implements a Host-Blind Architecture with automatic vaporization:
Layer | What Happens |
Encryption | AES-256-CBC encryption happens entirely on your device |
Transport | Decryption keys travel only in the URL fragment ( |
Storage | Server stores encrypted binary blobs β host-blind, no access to contents |
Vaporization | Data vaporizes after 24 hours. No history. No leaks. |
Quick Start
Option 1: Web Upload
Visit vnsh.dev, drag & drop a file, or paste text. Get an encrypted link instantly.
Option 2: CLI Installation
Zero-install (just run it):
echo "hello" | npx vnshNPM (global install):
npm install -g vnshShell script (cross-platform: macOS, Linux, WSL, Git Bash):
curl -sL https://vnsh.dev/i | shCLI Usage
# Upload a file
vn secrets.env
# Pipe from stdin
cat crash.log | vn
docker logs app | vn
git diff HEAD~5 | vn
# Read/decrypt a URL
vn read "https://vnsh.dev/v/aBcDeFgHiJkL#R_sI4DHZ..."
# Custom expiry (1-168 hours)
vn --ttl 1 temp-file.txt # expires in 1 hour
# Show version and help
vn --version
vn --helpOption 3: Claude Code (MCP Integration)
Native to Claude Code. Unlike Dropbox, vnsh has a first-party MCP server. Claude can "see" inside your encrypted links without leaving the terminal.
Create .mcp.json in your project root:
{
"mcpServers": {
"vnsh": {
"command": "npx",
"args": ["-y", "vnsh-mcp"]
}
}
}Restart Claude Code after adding the config. Now Claude can:
Read vnsh links automatically when you paste them
Share large text outputs via
vnsh_sharetoolShare files (images, PDFs, binaries) via
vnsh_share_filetool
Option 4: Zero-Install (Remote Servers)
No installation needed. Pipe anything from any server with just curl and openssl:
# One-liner: encrypt and upload from any machine
cat error.log | bash <(curl -sL vnsh.dev/pipe)
# https://vnsh.dev/v/aBcDeFgHiJkL#R_sI4DHZ_6jNq6yqt2ORRDe9...
# Works with any command
kubectl logs pod/crash | bash <(curl -sL vnsh.dev/pipe)
docker logs app 2>&1 | bash <(curl -sL vnsh.dev/pipe)
journalctl -u nginx --since "1 hour ago" | bash <(curl -sL vnsh.dev/pipe)
# Custom TTL (hours)
cat secrets.env | bash <(curl -sL vnsh.dev/pipe?ttl=1)Perfect for SSH sessions, CI runners, Docker containers β anywhere you can't install tools.
Option 5: Chrome Extension
One-click encrypted debug bundles for AI. Share text, screenshots, and console errors directly from your browser.
Right-click any selected text β Share via vnsh
Cmd+Shift+Dβ AI Debug Bundle (screenshot + console errors + selected text + URL, all encrypted)Hover over vnsh links on any page β see decrypted preview tooltip
Build from source or install from the Chrome Web Store (pending review):
cd extension && npm install && npm run build
# Load dist/ as unpacked extension in chrome://extensions/See extension/README.md for full documentation.
Option 6: GitHub Action (CI/CD)
Debug CI failures with Claude in one click. When your CI fails, automatically upload logs and post a secure link to your PR.
- name: Debug with vnsh
if: failure()
uses: raullenchai/upload-to-vnsh@v1
with:
file: test.log
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}The action will post a comment to your PR:
π Debug with Claude
CI logs uploaded securely. View Logs | Paste link to Claude for instant analysis
See upload-to-vnsh for full documentation.
How It Works
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β YOUR DEVICE β
β βββββββββββ ββββββββββββββββ βββββββββββββββββββββββββββββββββββ β
β β Data βββββΆβ AES-256-CBC βββββΆβ Encrypted Blob + URL Fragment β β
β βββββββββββ β Encryption β β https://vnsh.dev/v/id#k=... β β
β ββββββββββββββββ βββββββββββββββββββββββββββββββββββ β
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β
Only encrypted blob sent to server
(key stays in URL fragment, never transmitted)
βΌ
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β VNSH SERVER (BLIND) β
β β
β Receives: [encrypted binary blob] β
β Stores: [encrypted binary blob] β
β Knows: upload time, size, expiry β
β Cannot: decrypt, identify content type, read keys β
β β
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββURL Structure (v2 β compact format)
https://vnsh.dev/v/aBcDeFgHiJkL#R_sI4DHZ_6jNq6yqt2ORRDe9QZ5xQB6hIRLWHVFa8v8jYCFqgQIbsRJrtJze_nL5
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
12-char ID 64-char base64url secret (key+iv, never sent to server)The v2 format reduces URL length by ~40% (from ~160 to ~95 characters). Legacy v1 URLs (#k=...&iv=...) are still fully supported.
Self-Hosting
vnsh runs on Cloudflare Workers with R2 storage. Deploy your own instance:
Prerequisites
Cloudflare account with Workers & R2 enabled
Deploy
# Clone the repository
git clone https://github.com/raullenchai/vnsh.git
cd vnsh/worker
# Install dependencies
npm install
# Create R2 bucket
wrangler r2 bucket create vnsh-store
# Deploy
wrangler deployConfiguration
Edit wrangler.toml to customize:
name = "vnsh"
[[r2_buckets]]
binding = "VNSH_STORE"
bucket_name = "vnsh-store" # Your R2 bucket name
[[kv_namespaces]]
binding = "VNSH_META"
id = "your-kv-namespace-id" # Create with: wrangler kv namespace create VNSH_METAAPI Reference
POST /api/drop
Upload an encrypted blob.
curl -X POST https://vnsh.dev/api/drop \
-H "Content-Type: application/octet-stream" \
--data-binary @encrypted.binQuery Parameters:
Parameter | Type | Description |
| number | Time-to-live in hours (1-168, default: 24) |
| number | Payment required to access (x402 protocol) |
Response:
{
"id": "a1b2c3d4-5678-90ab-cdef-1234567890ab",
"expires": "2025-01-25T00:00:00.000Z"
}GET /api/blob/:id
Download an encrypted blob.
curl https://vnsh.dev/api/blob/a1b2c3d4-5678-90ab-cdef-1234567890abResponse Codes:
Code | Description |
200 | Success β returns encrypted blob |
402 | Payment required |
404 | Not found |
410 | Expired |
GET /v/:id
Web viewer (serves HTML directly to preserve URL fragment with encryption keys).
GET /i
CLI installation script.
GET /pipe
Zero-install pipe upload script. Returns a shell script that encrypts stdin and uploads it.
cat file.log | bash <(curl -sL vnsh.dev/pipe)Query Parameters:
Parameter | Type | Description |
| number | Time-to-live in hours (1-168, default: 24) |
GET /claude
Claude Code MCP integration installer script.
Security Model
What vnsh Protects Against
β Server Compromise β Even with full server access, attackers cannot decrypt blobs β Database Leaks β Stored data is indistinguishable from random noise β Traffic Analysis β No content-type information stored β Subpoenas β Server operator cannot produce plaintext (doesn't have keys)
What vnsh Does NOT Protect Against
β URL Sharing β Anyone with the full URL (including #fragment) can decrypt
β Client Compromise β Malware on your device can intercept before encryption
β MITM on Upload Page β An attacker serving malicious JavaScript could intercept
Recommendations
Use vnsh over HTTPS only
Don't share full URLs in public channels (Slack, Discord, Twitter)
For maximum security, self-host the worker
Project Structure
vnsh/
βββ worker/ # Cloudflare Worker (storage API + web viewer)
β βββ src/
β β βββ index.ts # Main worker code
β βββ test/
β βββ api.test.ts
βββ mcp/ # MCP Server (Claude Code integration)
β βββ src/
β β βββ index.ts # MCP tool handlers
β β βββ crypto.ts # Encryption utilities
β βββ package.json
βββ extension/ # Chrome Extension (AI debug sharing)
β βββ src/
β β βββ lib/ # Shared crypto, API, storage
β β βββ background/ # Service worker
β β βββ content/ # Link detector + tooltip
β β βββ popup/ # Extension popup UI
β βββ tests/
βββ cli/
β βββ vn # Bash CLI script
β βββ npm/ # NPM package (vnsh)
β β βββ src/
β β β βββ cli.ts
β β β βββ crypto.ts
β β βββ package.json
β βββ install.sh # Shell installer
βββ homebrew-tap/ # Homebrew formula
β βββ Formula/
β βββ vnsh.rb
βββ docs/ # DocumentationPackages
Package | Description | Install |
CLI tool |
| |
MCP server for Claude |
| |
Chrome Extension | ||
GitHub Action for CI/CD |
| |
Homebrew tap |
|
Development
# Clone
git clone https://github.com/raullenchai/vnsh.git
cd vnsh
# Install dependencies
npm install
cd worker && npm install
cd ../mcp && npm install
# Run tests
npm test # Worker + MCP tests
cd extension && npm test # Extension tests (48 tests, 93%+ coverage)
cd extension && npm run test:cov # Extension tests with coverage
# Start local worker
cd worker && npm run dev
# Build MCP server
cd mcp && npm run build
# Build extension
cd extension && npm install && npm run build
# Load extension/dist/ as unpacked in chrome://extensions/Contributing
Contributions are welcome! Please read our Contributing Guide before submitting a PR.
Development Workflow
Fork the repository
Create a feature branch (
git checkout -b feature/amazing-feature)Run tests (
npm test)Commit changes (
git commit -m 'Add amazing feature')Push to branch (
git push origin feature/amazing-feature)Open a Pull Request
License
MIT License β see LICENSE for details.
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
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/raullenchai/vnsh'
If you have feedback or need assistance with the MCP directory API, please join our Discord server