{
    "name": "easysend",
    "version": "1.0.0",
    "description": "Upload and share files instantly via EasySend. No authentication required.",
    "homepage": "https://easysend.co",
    "documentation": "https://easysend.co/mcp",
    "api_base": "https://easysend.co/api/v1",
    "tools": [
        {
            "name": "upload_file",
            "description": "Upload a file to EasySend and get a shareable link. Accepts any file type up to 1GB. No authentication required.",
            "inputSchema": {
                "type": "object",
                "properties": {
                    "file_path": {
                        "type": "string",
                        "description": "Path to the file to upload"
                    },
                    "description": {
                        "type": "string",
                        "description": "Optional description/note for the bundle, visible to recipients"
                    }
                },
                "required": ["file_path"]
            }
        },
        {
            "name": "upload_multiple_files",
            "description": "Upload multiple files to EasySend bundled under one shareable link.",
            "inputSchema": {
                "type": "object",
                "properties": {
                    "file_paths": {
                        "type": "array",
                        "items": { "type": "string" },
                        "description": "Array of file paths to upload"
                    },
                    "description": {
                        "type": "string",
                        "description": "Optional description/note for the bundle"
                    }
                },
                "required": ["file_paths"]
            }
        },
        {
            "name": "get_bundle",
            "description": "Get information about a shared bundle including file list, sizes, download counts, and expiry time.",
            "inputSchema": {
                "type": "object",
                "properties": {
                    "short_code": {
                        "type": "string",
                        "description": "The bundle code from the share URL (e.g. 'Ab3Kz' from easysend.co/Ab3Kz)"
                    }
                },
                "required": ["short_code"]
            }
        },
        {
            "name": "download_file",
            "description": "Download a file from an EasySend bundle by file ID.",
            "inputSchema": {
                "type": "object",
                "properties": {
                    "file_id": {
                        "type": "integer",
                        "description": "The file ID from the bundle info response"
                    }
                },
                "required": ["file_id"]
            }
        },
        {
            "name": "check_bundle_status",
            "description": "Quick status check on a bundle  -  check if it exists, is expired, and remaining space.",
            "inputSchema": {
                "type": "object",
                "properties": {
                    "short_code": {
                        "type": "string",
                        "description": "The bundle code"
                    }
                },
                "required": ["short_code"]
            }
        }
    ]
}
