Server data from the Official MCP Registry
Live, end-to-end encrypted, ephemeral file transfer between your AI agent and any device.
Live, end-to-end encrypted, ephemeral file transfer between your AI agent and any device.
JustDrop MCP is a well-designed file transfer server with strong security fundamentals. End-to-end encryption, path sandboxing, and credential filtering provide robust protection against data exfiltration and prompt injection. Minor code quality issues (broad exception handling, logging practices) and an unchecked environment variable baseline do not materially impact security. Permissions align appropriately with the server's purpose. Supply chain analysis found 3 known vulnerabilities in dependencies (0 critical, 3 high severity). Package verification found 1 issue.
7 files analyzed · 9 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Set these up before or after installing:
Environment variable: JUSTDROP_ROOT
Environment variable: JUSTDROP_DEFAULT_EXPIRY_MINUTES
Add this to your MCP configuration file:
{
"mcpServers": {
"ai-justdrop-mcp": {
"env": {
"JUSTDROP_ROOT": "your-justdrop-root-here",
"JUSTDROP_DEFAULT_EXPIRY_MINUTES": "your-justdrop-default-expiry-minutes-here"
},
"args": [
"-y",
"justdrop-mcp"
],
"command": "npx"
}
}
}From the project's GitHub README.
Give your AI agent a way to hand you files — live, end-to-end encrypted, nothing stored.
justdrop-mcp is an MCP (Model Context Protocol) server for JustDrop. Your agent creates a room, you scan a QR or open a link on any device, and the files move — encrypted before they leave the machine, decrypted only on yours, gone when the room closes. No account on either end. The receiving device needs nothing installed: just a browser.
You: "drop dist/report.pdf to my phone"
Agent: Room code: brave-otter-4821
Link: https://justdrop.ai/app#join=brave-otter-4821
[QR code]
You: *scan, tap, done — the room self-destructs*
It works the other way too: "grab the screenshot from my phone" gives you a QR; whatever you drop from the phone lands decrypted in your working directory, and the agent keeps working with it.
Requires Node.js 20+.
claude mcp add justdrop -- npx -y justdrop-mcp
Or in .mcp.json / any MCP client config:
{
"mcpServers": {
"justdrop": {
"command": "npx",
"args": ["-y", "justdrop-mcp"],
"env": {
"JUSTDROP_ROOT": "C:/path/to/allowed/folder"
}
}
}
}
| Tool | What it does |
|---|---|
drop | Send files/folders. Returns room code + link + QR immediately; the transfer runs automatically when the recipient opens the link. Pass room_code to send into an existing room instead. |
receive | Receive files into a directory. Creates a room (code + link + QR) and saves anything dropped into it, decrypted, automatically. Pass room_code to join a room someone else created. |
status | Live progress: peer presence, per-file state, saved paths. |
cancel | Destroys a room this session created (files + metadata deleted), or leaves a joined room. |
| Env var | Default | Meaning |
|---|---|---|
JUSTDROP_BASE_URL | https://justdrop.ai | Backend to talk to (point at http://localhost:3000 for local dev). |
JUSTDROP_ROOT | server's working directory | The only directory the server may read from / save into. |
JUSTDROP_DEFAULT_EXPIRY_MINUTES | 60 | Room lifetime when a tool doesn't specify one (1–1440). |
An MCP server that reads local files is a prompt-injection target, so the guardrails are structural, not polite suggestions:
JUSTDROP_ROOT. Anything else is refused..env, .npmrc, …), SSH/TLS keys, keystores, cloud credential files, and shell histories are never sent, even when named explicitly. There is no override flag.drop result lists exactly which files were queued, so the user sees what's leaving..exe, .bat, …) are refused up front with a hint to zip instead.drop creates a room and registers an RSA-2048 public key; the tool returns the code/link/QR immediately.Files are encrypted in one shot in memory (format parity with the web app), so very large files need commensurate RAM. The hard cap is 2GB per file.
npm install
npm run verify # builds, boots ../justdrop-simple dev server, runs both test suites
# or piecewise, against a server you started yourself:
npm run build
node test/e2e.mjs http://localhost:3000 # core roundtrip (both directions + SSE)
node test/mcp-smoke.mjs http://localhost:3000 # full MCP stdio protocol exercise
MIT
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Web content fetching and conversion for efficient LLM usage
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.