Connect DropAI.zone to your AI agent for seamless file uploads.
The Model Context Protocol (MCP) allows AI agents like Claude Code, Cursor, and others to use external tools. DropAI.zone provides MCP-compatible tools for uploading, retrieving, and listing files. This means your AI agent can upload screenshots, share files, and manage drops without leaving the conversation.
Create an account and generate an API key from your API Keys page.
Add DropAI.zone to your MCP configuration. For Claude Code, add to your claude_desktop_config.json or .claude/settings.json:
{
"mcpServers": {
"dropai": {
"type": "http",
"url": "https://dropai.zone/api/mcp",
"headers": {
"Authorization": "Bearer dz_your_api_key_here"
}
}
}
}dz_your_api_key_here with your actual API key. When prompted, authenticate via the browser and paste the callback URL into your terminal.By default, Claude Code asks permission each time a DropAI tool is used. To skip the prompt, add these to the allowedTools array in your .claude.json:
"allowedTools": [ "mcp__dropai__dropai_upload", "mcp__dropai__dropai_get", "mcp__dropai__dropai_list" ]
dropai_uploadUpload a file to DropAI.zone and get a shareable URL.
file_base64 (required) - Base64-encoded file contentfilename (required) - Original filename with extensiondescription - Optional descriptionttl_hours - Hours until auto-delete. Uses your account default if omitted. Set to 0 for permanent (Pro only). Capped to your plan's max TTL.max_views - Max views before auto-delete (0 = unlimited)visibility - public (default), unlisted, or private (Pro only)dropai_getGet metadata and content URL for a file.
slug_or_url (required) - Drop slug or full URLinclude_content - Include raw text content (for text files)dropai_listList drops from your account with pagination. Returns total count for easy paging.
limit - Number of results (default 10, max 50)offset - Number of items to skip for pagination (default 0)type_filter - Filter by type: image, text, document, allWhen an AI agent takes a screenshot or generates a file, it can upload directly:
"Use the dropai_upload tool to upload this screenshot so I can share it with my team."
"Use dropai_get to fetch the contents of https://dropai.zone/d/aB3xK9mQ"