mcp-curl-downloader
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., "@mcp-curl-downloaderDownload https://example.com/file.pdf to ~/Downloads"
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.
mcp-curl-downloader
MCP server for downloading files via HTTP/HTTPS — like curl but integrated with AI assistants (Claude Desktop, VS Code, Cursor, etc.).
Quick Start
npx -y mcp-curl-downloaderNo installation needed. The server starts on stdio and speaks the Model Context Protocol (MCP).
Related MCP server: MCP File Downloader
Claude Desktop Configuration
Add to your claude_desktop_config.json:
{
"mcpServers": {
"curl-downloader": {
"command": "npx",
"args": ["-y", "mcp-curl-downloader"]
}
}
}Config file location:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
Tool: download_file
Downloads a file from a URL to any local directory or file path.
Parameters
Parameter | Type | Required | Default | Description |
|
| yes | — | File URL (http/https only) |
|
| yes | — | Destination directory or full file path |
|
| no | auto-detected | Custom filename (only when |
|
| no |
| HTTP headers as key-value pairs |
|
| no |
| Overwrite existing file |
Examples
Download to a directory (filename auto-detected from URL):
{
"url": "https://example.com/report.pdf",
"dest_path": "/home/user/downloads"
}Download with custom filename:
{
"url": "https://example.com/data.csv",
"dest_path": "/tmp",
"filename": "my_data.csv"
}Download with auth headers:
{
"url": "https://api.example.com/export",
"dest_path": "./output.json",
"headers": { "Authorization": "Bearer token123" }
}Overwrite existing file:
{
"url": "https://example.com/latest.zip",
"dest_path": "/home/user/archive.zip",
"overwrite": true
}Response
Success:
{
"success": true,
"file_path": "/home/user/downloads/report.pdf",
"file_size": 1048576,
"content_type": "application/pdf",
"message": "Successfully downloaded: /home/user/downloads/report.pdf (1.00 MB)"
}Failure:
{
"success": false,
"error": "File already exists: \"/home/user/downloads/report.pdf\". Set overwrite=true to replace.",
"url": "https://example.com/report.pdf",
"dest_path": "/home/user/downloads"
}Security
Protocol whitelist: Only
http:andhttps:are allowedURL validation: Malformed URLs are rejected
Path traversal protection: Filenames are sanitized (
../, Windows-illegal characters, control characters removed)File size limit: 500 MB default (configurable via
CONFIG.MAX_FILE_SIZE)Overwrite protection: Existing files are not overwritten unless
overwrite: trueTimeout: 5 minutes per download (configurable via
CONFIG.TIMEOUT_MS)
Development
# Install dependencies
npm install
# Build
npm run build
# Watch mode
npm run dev
# Test with MCP Inspector
npx @modelcontextprotocol/inspector node dist/index.jsRequirements
Node.js >= 18 (uses built-in
fetchandstream/promises)
License
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
Related MCP Servers
- AlicenseBqualityDmaintenanceEnables AI assistants to download images from URLs and perform basic image optimization tasks.21018Apache 2.0
- AlicenseBqualityDmaintenanceEnables Claude Desktop to download files from web URLs with automatic browser fallback for JavaScript-heavy sites. Supports smart redirect handling, custom file naming, and cross-platform compatibility.1103MIT
- -license-quality-maintenanceEnables AI to upload local files to RustFS storage service and download files from HTTP/HTTPS URLs to local paths. Built with FastMCP and RustFS SDK for seamless file operations through natural language.
- AlicenseBqualityFmaintenanceA Model Context Protocol (MCP) server that enables AI assistants to download files from URLs to the local filesystem.22MIT
Related MCP Connectors
File uploads for AI agents. Upload, list, and manage files. No signup required.
Read a URL as clean markdown, screenshot a website, url to PDF. Web access for agents, no signup.
Download YouTube, TikTok, Vimeo, SoundCloud and 6 more platforms from any MCP AI chatbot.
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/mutoukenji/mcp-curl-downloader'
If you have feedback or need assistance with the MCP directory API, please join our Discord server