drop-mcp
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., "@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: filekiwi-mcp-server
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 installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityFmaintenanceA Model Context Protocol (MCP) server that enables AI assistants to download files from URLs to the local filesystem.Last updated22MIT

filekiwi-mcp-serverofficial
Alicense-qualityDmaintenanceModel Context Protocol (MCP) server for simple and instant file sharing. Input: file name → Output: download link in Seconds even for large fileLast updated894MIT- Alicense-qualityCmaintenanceA minimal, zero-dependency MCP server that enables defining and running tools over stdio transport, without extra features like HTTP or resources.Last updated391MIT
Related MCP Connectors
Zero-install remote MCP server for proof-of-existence file attestation.
MCP server for the FFmpeg Micro video transcoding API — create, monitor, download transcodes.
Publish HTML, files, or a URL to a permanent public URL, then update it — from any MCP agent.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/Transmitt0r/drop-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server