agent-drop
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., "@agent-dropRead the latest file I dropped and summarize it."
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.
Agent Drop
Local MCP file and secret handoff for CLI AI agents.
Agent Drop gives you a small local web UI plus a local MCP server so you and your CLI coding agents can exchange files, API keys, passwords, screenshots, and generated artifacts without pasting sensitive data into the chat transcript.
Use it with terminal agents such as Codex CLI, Gemini CLI, Claude Code, and other MCP-capable CLI tools.
You -> web UI -> user_drops/
Agent -> MCP -> agent_drops/Your files stay on your machine.
Why
CLI agents are powerful, but file handoff is still awkward:
You need to give the agent a screenshot, PDF, token, key, or log file.
You need to pass an API key or password without leaving it in the session history.
The agent needs to give you a generated report, image, patch, export, or artifact.
Terminal sessions usually do not have a clean upload/download lane.
Agent Drop is the missing local dropbox between you and the agent.
Related MCP server: MCP Filesystem Server
Features
Local web UI for uploading files and short notes to an agent.
Secret-note flow for passwords, tokens, and API keys you do not want pasted into chat history.
Download area for files delivered by agents.
MCP server for CLI agents to read uploads and deliver artifacts.
One shared local folder, configured with
AGENT_DROP_DIR.One-time
.burnnotes for sensitive snippets.Docker Compose setup for the web UI.
Guided setup for local terminal environments.
Optional reverse proxy support for advanced self-hosting.
Quick Start
Requirements:
Node.js 20+
npm
Docker Engine with Docker Compose, or another Docker-compatible local runtime
Install:
git clone https://github.com/mikezio/agent-drop.git
cd agent-drop
npm run setup
docker compose up -d --buildOpen:
http://localhost:8400/The setup script prints MCP config snippets for your CLI agent.
Run Without Docker
npm --prefix secret-drop-ui install
npm --prefix mcp install
AGENT_DROP_DIR=./data/agent-drop npm run devOpen http://localhost:3000/.
How It Works
Agent Drop uses one local directory:
AGENT_DROP_DIR/
user_drops/ # files and notes uploaded by you
agent_drops/ # files delivered by agentsThe web UI and every MCP client must point to the same AGENT_DROP_DIR.
Good local defaults:
Local terminal:
/home/you/AgentDropWSL/Linux VM:
/home/you/AgentDropServer:
/srv/agent-drop
Do not put AGENT_DROP_DIR in a public repo. It may contain secrets.
Configure Your CLI Agent
Agent Drop has one MCP server in mcp/.
MCP command:
/absolute/path/to/agent-drop/mcp/run.shCodex CLI TOML:
[mcp_servers.agent-drop]
command = "/absolute/path/to/agent-drop/mcp/run.sh"
env = { AGENT_DROP_DIR = "/absolute/path/to/AgentDrop" }Generic MCP JSON for Gemini CLI, Claude Code, and similar clients:
{
"mcpServers": {
"agent-drop": {
"command": "/absolute/path/to/agent-drop/mcp/run.sh",
"env": {
"AGENT_DROP_DIR": "/absolute/path/to/AgentDrop"
}
}
}
}More examples: docs/agent-clients.md
MCP Tools
get_unread_uploads: returns unread user uploads and marks them as read.list_all_uploads: lists all user uploads.deliver_to_user_device: copies generated files intoagent_drops.generate_and_deliver_file: creates a short text file inagent_drops.delete_specific_drop: deletes one file from either drop folder.clear_drops: clears user drops, agent drops, or both.
Local First
Agent Drop is intentionally local-first:
No account.
No cloud service.
No database.
No hosted file storage.
No domain required.
If you want LAN access, a domain, or /drop behind nginx/Caddy/Traefik, see docs/deployment.md.
Security
Treat your drop directory as sensitive storage.
Keep the UI bound to
127.0.0.1unless you intentionally want network access.Add authentication before exposing the UI to a LAN or public domain.
Secret notes avoid chat-history exposure; they are still local files until read or cleared.
Never commit
.env,data/, or dropped files.Clear old drops when a project is done.
See SECURITY.md.
Development
npm --prefix secret-drop-ui install
npm --prefix mcp install
AGENT_DROP_DIR=./data/agent-drop npm run devBuild:
npm --prefix secret-drop-ui run buildRun the MCP server:
AGENT_DROP_DIR=./data/agent-drop npm --prefix mcp run startProject Layout
secret-drop-ui/ Next.js web UI
mcp/ stdio MCP server
scripts/ guided setup and optional utilities
docs/ client and deployment notesLicense
MIT
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 Servers
- Flicense-qualityDmaintenanceEnables file system operations such as listing, reading, and creating files within a scoped local project directory. It provides a secure way to manage local files through standardized MCP tools built with FastMCP.Last updated
- Alicense-qualityCmaintenanceProvides file system operations (list, read, write, search) via MCP, enabling an AI agent to manage files through natural language.Last updated1,967MIT
- AlicenseAqualityBmaintenanceProvides LLMs with local filesystem operations (read/write files, list directories) and command execution via MCP, enabling file management and task automation within AI clients.Last updated719ISC
- Flicense-qualityDmaintenanceEnables listing, reading, and searching local files and directories through MCP tools.Last updated
Related MCP Connectors
OCR, transcription, file extraction, and image generation for AI agents via MCP.
Artifact store for AI agents. Hosted OAuth at mcp.artifacta.io/mcp; local stdio via npm/PyPI.
File uploads for AI agents. Upload, list, and manage files. No signup required.
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/mikezio/agent-drop'
If you have feedback or need assistance with the MCP directory API, please join our Discord server