# easysend [Health: Active]

**Category:** 💻 Developer Tools  
**Repository:** https://github.com/Easysend-co/easysend-mcp  
**GitHub Stars:** 0  
**Views:** 0  
**Installs:** 0  
**Upvotes:** 0  
**Directory Page:** https://allmcps.com/mcp/easysend

## Description
EasySend file sharing MCP server - upload, download and share files. No authentication required.

## Tools
Capabilities this server exposes over MCP:

- **upload_files** — Upload files and get a share link
- **get_bundle** — Get bundle info (files, sizes, expiry)
- **download_file** — Download a file by ID
- **download_bundle** — Download all files in a bundle
- **delete_file** — Delete a file (requires upload_token)
- **bundle_status** — Quick status check

## Claude Desktop Quick Installation
Install path detected from listing signals. Uses `npx` (confidence: high):

```json
"mcpServers": {
  "easysend": {
    "command": "npx",
    "args": ["easysend-mcp"]
  }
}
```

## Documentation & README

# easysend-mcp

EasySend file sharing plugin for Claude Code. Upload, download, and share files directly from your AI assistant session.

## Install

Add to your Claude Code settings (`~/.claude/settings.json`):

```json
{
    "mcpServers": {
        "easysend": {
            "command": "npx",
            "args": ["easysend-mcp"]
        }
    }
}
```

Or install globally:

```bash
npm install -g easysend-mcp
```

## Tools

| Tool | Description |
|------|-------------|
| `upload_files` | Upload files and get a share link |
| `get_bundle` | Get bundle info (files, sizes, expiry) |
| `download_file` | Download a file by ID |
| `download_bundle` | Download all files in a bundle |
| `delete_file` | Delete a file (requires upload_token) |
| `bundle_status` | Quick status check |

## Usage Examples

In Claude Code, just ask naturally:

- "Upload report.pdf to EasySend"
- "Share all the CSV files in this directory"
- "What files are in easysend.co/Ab3Kz?"
- "Download the files from that EasySend bundle"

## No API Key Required

EasySend's API is free and public. No authentication needed for uploads.

## Links

- Website: https://easysend.co
- API Docs: https://easysend.co/api
- MCP Docs: https://easysend.co/mcp

