Model Downloader ๐
Pull a checkpoint straight into ComfyUI from inside the graph
- trigger_signal
- log
The most common way people share a ComfyUI workflow that doesn't just work is "here's the JSON, and also go find these six model files and drop them in the right folders yourself." Model Downloader turns that step into a node in the graph itself: give it a URL, a target folder, run the workflow, and the file lands where ComfyUI expects it before anything else tries to load it.
What it does. It's a straight HTTP(S) download node aimed at the models directory, with a few conveniences bolted on for the sources people actually pull from: Hugging Face (with an optional mirror and token for gated repos), GitHub, or, per the README, "anywhere." It writes a log string as output so you can see what happened - useful when you're chaining it before other nodes and want confirmation the file actually landed before the rest of the workflow tries to use it.
The inputs that matter.
urlandsave_pathare the two you always set -save_pathdefaults tocheckpoints, so point it atloras,vae,controlnet, or wherever the file actually belongs relative to yourmodels/folder.override(defaulttrue) controls whether a re-run replaces an existing file of the same name; flip it off once you've got the file and don't want a slow re-download every time you re-run the workflow.use_hf_mirrorswaps in a Hugging Face mirror endpoint - relevant ifhuggingface.cois slow or blocked from where your ComfyUI instance runs.rename_toandhf_tokenare optional: rename on save, or authenticate against a gated Hugging Face repo.skip_ssl_verify(defaulttrue) andtimeout(default 30s, up to 600) are the two you'll only touch when something's already broken - see below.trigger_signalis an optional wildcard input with no logic of its own beyond forcing this node to wait on whatever feeds it, useful for sequencing the download after some other step instead of letting ComfyUI run it in parallel.
The single output is log (a STRING) - wire it into a Show Anything node or similar if you want to actually see it rather than just trust it.
Installing the pack. Through ComfyUI Manager: search ComfyUI_MieNodes and install. By hand: cd ComfyUI/custom_nodes && git clone https://github.com/MieMieeeee/ComfyUI-MieNodes, then restart ComfyUI. No extra Python dependencies specific to this node beyond what the pack already needs.
Troubleshooting.
- Download fails or hangs. The default 30-second
timeoutis short for anything but a small file - a multi-gigabyte checkpoint over a slow connection will blow past it. Bumptimeoutup (max 600s) before assuming the URL is broken. - SSL errors on a source you trust.
skip_ssl_verifydefaults totruespecifically because some mirrors and less-common hosts have certificate chains that trip strict verification. If you're pointed at something you don't trust, flip it back on rather than downloading blind. - Gated Hugging Face repo returns 401/403. You need
hf_tokenset to a token with access to that repo - a plain URL isn't enough for anything behind a license gate. - File downloads but nothing that uses it can find it. Double-check
save_pathmatches the subfolder ComfyUI actually scans for that model type (checkpoints,loras,vae,controlnet, etc.) - a typo here downloads the file successfully into a folder nothing else looks at, which reads exactly like a broken download even though it isn't one. - Every re-run redownloads a multi-gigabyte file you already have. That's
overridedefaulting totrue- set it tofalseonce the file is in place so subsequent runs skip it. This is also the node that gives you the "download models 90% of the time" ComfyUI pain point some actual relief on, since it makes fetching part of the graph instead of a manual pre-flight checklist - dependency hell in the wider ecosystem is mostly about missing nodes, but missing models is the other half of it, and this is the node built to close that gap without leaving the workflow.
Inputs (9)
| Name | Type | Default | Description |
|---|---|---|---|
| url | STRING | โ | |
| save_path | STRING | checkpoints | โ |
| override | BOOLEAN | true | โ |
| use_hf_mirror | BOOLEAN | false | โ |
| rename_toopt | STRING | โ | |
| hf_tokenopt | STRING | โ | |
| skip_ssl_verifyopt | BOOLEAN | true | โ |
| timeoutopt | INT | 301โ600 | โ |
| trigger_signalopt | * | โ |
Outputs (1)
| Name | Type | Description |
|---|---|---|
| log | STRING | โ |