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: 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-mcpTool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
No tool schema history has been recorded yet.
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.
Related MCP Connectors
Zero-install remote MCP server for proof-of-existence file attestation.
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.
Publish HTML or Markdown from any MCP client to a live, shareable URL on htmldrop.app.
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.29244MIT- 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.3136MIT
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