zerx-lab/FluxDown

๐Ÿ› ๏ธ Other Tools and Integrations
0 Views
0 Installs

๐Ÿฆ€ ๐Ÿ  ๐ŸชŸ - Control the FluxDown multi-protocol download manager (HTTP/FTP/BitTorrent/HLS): add, list, pause, resume, remove downloads and manage queues.

Quick Install

One-Click IDE Configuration
claude_desktop_config.json
{
  "mcpServers": {
    "zerx-lab-fluxdown": {
      "command": "npx",
      "args": [
        "-y",
        "zerx-lab-fluxdown"
      ]
    }
  }
}
Or

Using an AI coding agent (Claude Code, Cursor, etc.)? Copy a ready-made prompt that tells it to fetch the setup instructions and install this server for you.

Documentation Overview

FluxDown Logo

FluxDown

Downloads, Supercharged.

A blazing fast, multi-protocol download manager โ€” the free & open-source IDM alternative.

Latest Release Downloads License: AGPL-3.0 Platform Rust Flutter MCP Server

Awesome Rust Awesome Windows Awesome Free Apps Android FOSS Open Source Android Portainer Unraid CA Chinese Indie Dev

Website ยท Download ยท Changelog ยท FAQ ยท Feedback

English | ็ฎ€ไฝ“ไธญๆ–‡


Highlights

  • Up to 10x faster โ€” Rust + Tokio engine with IDM-style dynamic segmentation
  • Multi-protocol โ€” HTTP/HTTPS, FTP, BitTorrent, eD2K, HLS & DASH streaming
  • Browser integration โ€” Chrome / Edge / Firefox extension with a 3-layer interception engine
  • AI-agent ready โ€” built-in MCP (Model Context Protocol) server: let Claude, Cursor & other AI clients manage your downloads
  • Resume anywhere โ€” full download state persisted in SQLite; survive crashes and reboots
  • Beautiful UI โ€” light/dark themes, 13 color schemes, responsive three-pane layout
  • Clean & private โ€” free and open source, no ads, no tracking, no account required, local-first

Features

FeatureDescription
Rust-Powered EngineBuilt on Rust and Tokio with zero-cost abstractions โ€” memory-safe concurrency at maximum throughput
Smart SegmentationSegments split dynamically at runtime; idle threads rescue slow segments, just like IDM โ€” but smarter
Multi-ProtocolDedicated engines for HTTP/HTTPS, FTP, BitTorrent (DHT/UPnP/magnet), eD2K (server + Kad DHT source finding, MD4 verification), HLS (AES-decrypt) and DASH
Speed ControlToken-bucket global rate limiting โ€” download in the background without killing your browsing
Resume AnywhereEvery byte tracked in SQLite with WAL; power loss never costs you progress
Browser IntegrationThree-layer download interception, streaming media sniffing, Alt+Click bypass, right-click send
MCP ServerBuilt-in Model Context Protocol endpoint (Streamable HTTP) with 12 tools โ€” AI agents can add, monitor and control downloads
Beautiful Interfaceshadcn-style widgets, IDM-style segment visualization, named queues, system tray
Clean & PrivateZero ads, zero telemetry lock-in, zero accounts โ€” your data never leaves your machine

FluxDown vs. IDM

FluxDownIDM
PriceFree & open source$24.95 + renewals
Open sourceYes (AGPL-3.0)No
PlatformsWindows / macOS / Linux / NAS / AndroidWindows only
BitTorrent & magnetYesNo
eD2K / eMule linksYesNo
HLS / DASH streamingYesPartial
Dynamic segmentationYesYes
Browser extensionChrome / Edge / FirefoxYes
Ads & trackingNoneโ€”

Installation

Grab the latest build from GitHub Releases or fluxdown.zerx.dev:

PlatformPackages
Windows (x64 / ARM64)setup.exe installer ยท portable .zip
macOS (Intel / Apple Silicon).dmg ยท portable .tar.gz
Linux (x64).AppImage ยท .deb ยท Arch .pkg.tar.zst ยท portable .tar.gz
Android (arm64-v8a / armeabi-v7a / x86_64)per-ABI .apk ยท universal .apk
NAS / Server (headless, x64 / ARM64)Docker ยท Synology DSM 6/7 .spk ยท QNAP .qpkg ยท OpenWrt .ipk ยท Unraid CA template ยท CasaOS / ZimaOS app store

Browser Extension

Install the extension so FluxDown takes over browser downloads automatically:

Chrome Web Store Edge Add-ons Firefox Add-ons

MCP Server (Model Context Protocol)

FluxDown ships a built-in MCP server so AI agents (Claude Desktop, Cursor, Cline, โ€ฆ) can manage downloads via the Model Context Protocol. It speaks Streamable HTTP (JSON-RPC 2.0 over a single POST /mcp) on the local API port โ€” no extra process needed.

  • Endpoint: http://127.0.0.1:17800/mcp (local-only by default)
  • Auth: Bearer token (Authorization: Bearer <token> or X-FluxDown-Token), shared with the management API
  • Enable: Settings โ†’ API Service โ†’ toggle MCP endpoint (a token is generated automatically); the headless server enables it by default

Tools (12)

ToolDescription
download_addCreate a download task (HTTP/HTTPS, FTP, magnet, BitTorrent)
download_listList tasks with progress/speed/status, optional status filter
download_getGet a single task by ID
download_pause / download_resumePause / resume one task
download_pause_all / download_resume_allPause / resume all tasks
download_removeRemove a task, optionally deleting downloaded files
queue_listList named queues and their configuration
rss_listList RSS subscriptions with their configuration and runtime state
rss_addSubscribe to an RSS feed and start polling it on a schedule
rss_removeDelete an RSS subscription and the items it collected

Client configuration

{
  "mcpServers": {
    "fluxdown": {
      "url": "http://127.0.0.1:17800/mcp",
      "headers": { "Authorization": "Bearer <your-token>" }
    }
  }
}

The MCP layer is implemented in native/api/src/mcp.rs on top of the same ApiHost trait that powers the REST management API and aria2-compatible JSON-RPC.

Architecture

Flutter renders the UI; a zero-FFI Rust engine does the heavy lifting. The two talk through Rinf signals, and the browser extension connects via Native Messaging.

flowchart TD
    EXT["Browser Extension (WXT)"] -->|Native Messaging| NMH["fluxdown_nmh"]
    NMH -->|Named Pipe / Unix socket| HUB
    UI["Flutter UI (shadcn_ui)"] <-->|Rinf signals| HUB["hub โ€” FFI adapter"]
    HUB --> ENGINE["fluxdown_engine"]
    ENGINE --> HTTP["HTTP/HTTPS"]
    ENGINE --> FTP["FTP"]
    ENGINE --> BT["BitTorrent"]
    ENGINE --> ED2K["eD2K"]
    ENGINE --> HLS["HLS / DASH"]
    ENGINE --> DB[("SQLite")]
LayerTechPath
UIFlutter + shadcn_uilib/
FFI bridgeRinf (Dart โ†” Rust signals)native/hub/
Download engineRust + Tokio (zero FFI deps)native/engine/
Browser extensionWXT + TypeScriptfluxDown/
WebsiteAstro + Reactwebsite/

Building from Source

Prerequisites: Flutter SDK ยท Rust toolchain ยท Rinf CLI

# Clone the development branch (main = active development, stable = stable releases)
git clone -b main https://github.com/zerx-lab/FluxDown.git
cd FluxDown

# Check your environment
rustc --version
flutter doctor

# Install the Rinf CLI (once)
cargo install rinf_cli

# Fetch dependencies & generate Dart bindings
flutter pub get
rinf gen

# Run in debug mode
flutter run

# Build a release
flutter build windows --release   # or: macos / linux
Linux system dependencies
# Debian/Ubuntu
sudo apt-get install cmake ninja-build clang pkg-config \
  libgtk-3-dev libayatana-appindicator3-dev libnotify-dev libsecret-1-dev patchelf zstd

# Arch Linux
sudo pacman -S cmake ninja clang pkgconf gtk3 libayatana-appindicator libnotify libsecret patchelf zstd

The NMH relay binary (fluxdown_nmh) is built automatically by CMake during flutter build. Distribution packages (AppImage / deb / Arch / portable) are produced by CI on every tag.

Running tests
flutter test                          # Dart tests
cargo test -p fluxdown_engine        # Rust engine tests
cargo test -p hub                    # FFI adapter tests

Contributing & Community

  • Bug reports / feature requests โ€” GitHub Issues or the in-app feedback dialog
  • QQ Group โ€” 832143651

Pull requests are welcome! Branch off main and target main โ€” it is the development branch, while stable only tracks stable releases (maintainers advance it from main). Before submitting, please make sure:

cargo fmt --check && cargo clippy -- -D warnings   # Rust
flutter analyze                                     # Dart

See CONTRIBUTING.md for the full workflow.

License

Distributed under the GNU Affero General Public License v3.0.

If FluxDown saves you time, consider giving it a Star โ€” it helps more people discover the project.

Made by zerx-lab

Related MCP Servers

modelcontextprotocol/server-everythingVerified

๐Ÿ“‡ ๐Ÿ  - MCP server that exercises all the features of the MCP protocol

๐Ÿ› ๏ธ Other Tools and Integrations1 views
0xMassi/webclaw

๐Ÿฆ€ ๐Ÿ  ๐ŸŽ ๐Ÿง - Web content extraction for AI agents. 10 tools: scrape, crawl, map, batch, extract, summarize, diff, brand, search, research. TLS fingerprinting bypasses anti-bot without a browser. 67% fewer tokens than raw HTML. npx create-webclaw auto-configures Claude, Cursor, Windsurf, Codex, OpenCode.

๐Ÿ› ๏ธ Other Tools and Integrations0 views
2niuhe/plantuml_web

๐Ÿ ๐Ÿ  โ˜๏ธ ๐ŸŽ ๐ŸชŸ ๐Ÿง - A web-based PlantUML frontend with MCP server integration, enable plantuml image generation and plantuml syntax validation.

๐Ÿ› ๏ธ Other Tools and Integrations0 views
2niuhe/qrcode_mcp

๐Ÿ ๐Ÿ  ๐ŸŽ ๐ŸชŸ ๐Ÿง - A QR code generation MCP server that converts any text (including Chinese characters) to QR codes with customizable colors and base64 encoding output.

๐Ÿ› ๏ธ Other Tools and Integrations0 views

Engagement

Views
0
Installs
0
Upvotes
0

Views and upvotes are unique per visitor network (hashed IP). Installs count copy actions.

Status

Health: Not checked yet

We have not completed a health check for this listing yet.

No check timestamp yet.

Unclaimed listing (imported or pending owner verification). Claim it โ†’
โ˜… Spotlight Slot

Feature Your MCP Server

Get maximum visibility for your server across our directory, search results, and detail pages.

Spotlight Your Server

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge and attach your website.

Claim this listing

Promote this listing

Optional paid placement. Free listings stay free forever.

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.