drop-mcp
Click on "Deploy 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., "@drop-mcpdrop the ebook from https://example.com/book.epub"
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.
drop-mcp
A tiny remote MCP server with a single tool, drop, that saves a file — from
local content or a URL — into a directory it has mounted. It doesn't know or
care what happens to the file afterward; that's the mounted directory owner's
job (e.g. a watch-folder importer).
Tool
drop
Parameter | Required | Description |
| yes | Destination filename, e.g. |
| one of these two | Base64-encoded file content. |
| one of these two | URL to fetch server-side. |
Returns { status: "dropped", filename, bytes } on success.
Related MCP server: Developer Toolbox MCP
Configuration
See .env.example. DROP_MCP_TOKEN is required — the server checks
Authorization: Bearer <token> on every /mcp request. DROP_DIR is where
the mounted target directory should be pointed to inside the container.
Run
Prebuilt image (recommended for deployment)
Every GitHub release publishes a
container image to GHCR via .github/workflows/release.yml — no local build needed:
docker run -p 3000:3000 \
-e DROP_MCP_TOKEN=... \
-v /host/path/to/target/dir:/drop \
ghcr.io/transmitt0r/drop-mcp:latest # or a pinned version, e.g. :v0.1.0Or in a docker-compose.yml:
services:
drop-mcp:
image: ghcr.io/transmitt0r/drop-mcp:v0.1.0
restart: unless-stopped
environment:
DROP_MCP_TOKEN: "..."
DROP_DIR: /drop
volumes:
- /host/path/to/target/dir:/drop
ports:
- "3000:3000"From source
pnpm install
pnpm run build
DROP_MCP_TOKEN=... DROP_DIR=/drop pnpm startOr build the image yourself:
docker build -t drop-mcp .
docker run -p 3000:3000 \
-e DROP_MCP_TOKEN=... \
-v /host/path/to/target/dir:/drop \
drop-mcpThis server cannot be deployed
Maintenance
Related MCP Connectors
Zero-install remote MCP server for proof-of-existence file attestation.
Host your MCP tool over streamable HTTP in one command.
Publish HTML, Markdown, and multi-file sites as shareable URLs instantly via MCP.
MCP server for the FFmpeg Micro video transcoding API — create, monitor, download transcodes.
Related MCP Servers
- AlicenseBqualityFmaintenanceA Model Context Protocol (MCP) server that enables AI assistants to download files from URLs to the local filesystem.23MIT
- FlicenseNot gradedqualityCmaintenanceA production-ready MCP server providing file, system, math, and text utilities through a simple CLI client.-

@dropthis/mcpofficial
AlicenseAqualityAmaintenancePublish content (HTML, files, or URLs) and get a permanent public URL from any MCP-compatible agent, with local and remote connection options.29244 npmMIT- AlicenseAqualityBmaintenanceMCP server for publishing HTML or Markdown to a live hosted URL via htmldrop. Provides tools to publish, list, and delete hosted sites, with remote OAuth and API token authentication.398 npmMIT