ComfyUI Core Knowledge
Core ComfyUI knowledge covering workflow format, node types, pipeline patterns, and MCP tool usage
How to install
- Setup differs for this server — follow the Installation part of the README below.
- Claude Code:
claude mcp add <name> -- <command>. - Claude Desktop / Cursor: add it under
mcpServersin the MCP config file.
npx degit artokun/comfyui-mcp/plugin/skills/comfyui-core#main ~/.claude/skills/comfyui-coreFor one project only, change the path to .claude/skills/comfyui-core.
This one runs on your machine and can reach your files. Read the README below before you connect it.
Not working?
- Check which app you pasted it into — the steps above name the right one.
- Some skills need the paid tier of Claude or ChatGPT.
Paste into Claude, ChatGPT or Cursor.
Show the full text272 lines
ComfyUI Core Knowledge
Workflow JSON Format (API Format)
ComfyUI workflows are JSON objects mapping string node IDs to node definitions:
{
"1": {
"class_type": "CheckpointLoaderSimple",
"inputs": { "ckpt_name": "sd_xl_base_1.0.safetensors" },
"_meta": { "title": "Load Checkpoint" }
},
"2": {
"class_type": "CLIPTextEncode",
"inputs": { "text": "a cat", "clip": ["1", 1] },
"_meta": { "title": "Positive Prompt" }
}
}
Key Rules
- Node IDs are strings of integers (
"1","2", etc.) class_typeis the exact Python class name of the nodeinputscontains both widget values (scalars) and connections (arrays)- Connections use the format
["sourceNodeId", outputIndex], a 2-element array where:- the first element is the string node ID of the source node
- the second element is the integer index into the source node's
outputlist (0-based)
_metais optional and used for display titles only
Connection Examples
"model": ["1", 0] // Connect to node 1's first output (MODEL)
"clip": ["1", 1] // Connect to node 1's second output (CLIP)
"vae": ["1", 2] // Connect to node 1's third output (VAE)
"positive": ["2", 0] // Connect to node 2's first output (CONDITIONING)
"samples": ["5", 0] // Connect to node 5's first output (LATENT)
"images": ["6", 0] // Connect to node 6's first output (IMAGE)
Important: API Format vs Web UI Format
- API format (for execution/analysis) is
{ "1": { class_type, inputs }, "2": { ... } }. It is compact and used byenqueue_workflow,create_workflow (action:"validate"),create_workflow (action:"modify"), etc. - Web UI format (for saving and frontend editing) is
{ "nodes": [...], "links": [...] }. It includes layout positions, sizes, groups, and visual metadata so ComfyUI's canvas can open and edit it - Execution tools expect and return API format
- Save in Web UI format so saved workflows stay readable and editable in the ComfyUI frontend. A raw API-format save is not canvas-editable. It "exists" in the library but loads blank in the canvas, which strands users and tempts agents into creating yet another new workflow instead of reopening the old one. Because of this,
save_workflowauto-converts API-format input to Web UI format with a generated layout. Prefer passing real Web UI format (fromget_workflow(action="get", filename=…, format="ui")), since a generated layout loses the original node positions and groups <!-- API-vs-UI save-format clarification adapted from 1696762169/comfyui-mcp@3da56c9 --> get_workflowdefaults toformat="api"for analysis/execution; useformat="ui"when loading a workflow to re-save or edit in the canvas- Muted/bypassed nodes are preserved with
_meta.mode: "muted". They are inactive but visible for understanding the workflow - Get/Set virtual wire nodes are preserved with
_meta.titleandConstantkey for tracing data flow
Workflow Library Tools
get_workflow(action="analyze", filename=…)is the first call for understanding any saved workflow. It returns a structured text summary with sections, node IDs, key settings, virtual wires, and connection graph. No raw JSON, just what you need to reason about the workflow. Supports views: summary (default), overview (mermaid), detail (section mermaid), list, flat.get_workflow (action:"list")lists all saved workflows in ComfyUI's user libraryget_workflow(action="get", filename=…)loads raw workflow JSON. Only use it when you need the actual JSON forenqueue_workflow,create_workflow (action:"modify"), orsave_workflow. Useaction="analyze"instead for understanding. When the JSON is headed back tosave_workflow, requestformat="ui"so the workflow stays editable in the frontend.save_workflow(action="save", filename=…, workflow=…)saves a workflow to the user library. Pass Web UI format ({ nodes, links }) so it keeps its real layout in ComfyUI's canvas. API-format graphs are accepted and auto-converted to Web UI format (with a generated layout) precisely because a raw API-format save is not canvas-editable; the frontend cannot open it. When re-saving an existing workflow, load it withget_workflow(action="get", filename=…, format="ui")and edit that, so positions and groups survive.
Data Types
ComfyUI nodes pass typed data through connections:
| Type | Description | Common Source |
|---|---|---|
MODEL |
Diffusion model weights | CheckpointLoaderSimple (output 0) |
CLIP |
Text encoder | CheckpointLoaderSimple (output 1) |
VAE |
Variational autoencoder | CheckpointLoaderSimple (output 2) |
CONDITIONING |
Encoded text prompt | CLIPTextEncode (output 0) |
LATENT |
Latent space tensor | EmptyLatentImage, KSampler, VAEEncode |
IMAGE |
Pixel image tensor (BHWC) | VAEDecode, LoadImage, SaveImage |
MASK |
Single-channel mask | LoadImage (output 1) |
UPSCALE_MODEL |
Upscaling model | UpscaleModelLoader |
Standard Pipeline Patterns
Text-to-Image (txt2img)
CheckpointLoaderSimple → MODEL, CLIP, VAE
├─ CLIP → CLIPTextEncode (positive) → CONDITIONING
├─ CLIP → CLIPTextEncode (negative) → CONDITIONING
│
EmptyLatentImage → LATENT
│
KSampler (model, positive, negative, latent_image) → LATENT
│
VAEDecode (samples, vae) → IMAGE
│
SaveImage (images)
Node IDs typically: 1=Checkpoint, 2=Positive, 3=Negative, 4=EmptyLatent, 5=KSampler, 6=VAEDecode, 7=SaveImage
Image-to-Image (img2img)
Same as txt2img but replace EmptyLatentImage with:
LoadImage → IMAGE
VAEEncode (pixels, vae) → LATENT → KSampler.latent_image
Set KSampler.denoise to 0.5 to 0.8 (lower = closer to input image).
Upscale
LoadImage → IMAGE
UpscaleModelLoader → UPSCALE_MODEL
ImageUpscaleWithModel (upscale_model, image) → IMAGE
SaveImage (images)
Inpaint
LoadImage (image) → IMAGE → VAEEncode → LATENT
LoadImage (mask) → MASK
SetLatentNoiseMask (samples, mask) → LATENT → KSampler.latent_image
MCP Tool Usage Guide
Quick Generation
create_workflowwith template"txt2img"and your paramsenqueue_workflow(action="enqueue")with the returned JSON. It returnsprompt_idimmediately- Poll
queue(action:"status") with theprompt_iduntildoneis true - Use
get_image (action:"list_outputs")(limit 1) to find the generated image, thenReadto display it
Inspect & Modify
create_workflow (action:"node_info")queries what nodes are available and their schemascreate_workflow (action:"modify")patches an existing workflow (set_input, add_node, remove_node, connect, insert_between)visualize_workflowshows a workflow as a mermaid diagram
Reverse Engineering
visualize_workflowturns workflow JSON into a mermaid diagramvisualize_workflow (action:"mermaid")turns a mermaid diagram into workflow JSON (uses/object_infofor schema resolution)
Model Management
list_local_modelsshows what's installeddownload_modelaction:"search"finds models on HuggingFacedownload_modeldownloads to ComfyUI's models directory
Never ask the user to manually download models. If a required model is missing, search for it and download it yourself:
- Check
list_local_modelsfirst - If missing, search HuggingFace via
download_modelaction:"search"or CivitAI via their REST API - Use
download_modelto install it directly to the correct subfolder
CivitAI API (when the CIVITAI_API_TOKEN env var is available):
- Search:
GET https://civitai.com/api/v1/models?query={query}&types=Checkpoint&sort=Most+Downloaded&limit=5 - Details:
GET https://civitai.com/api/v1/models/{modelId} - Download:
GET https://civitai.com/api/download/models/{modelVersionId}?token={token}
CivitAI is preferred for fine-tuned models, community-rated checkpoints, and specialized LoRAs. HuggingFace is preferred for official/base models (SDXL, Flux, SD 1.5).
Custom Nodes
search_custom_nodessearches the ComfyUI Registry (action: "search") or gets one pack's details (action: "details")list_packs(action: "generate_skill") auto-generates a skill file for a node pack
Workflow Execution
enqueue_workflow submits to ComfyUI's queue and returns prompt_id + queue position immediately. It does not block.
Background Progress Monitoring
After enqueuing one or more workflows, use a background Bash task to monitor progress silently:
# Single job
Bash(run_in_background: true):
node "${CLAUDE_PLUGIN_ROOT}/scripts/monitor-progress.mjs" <prompt_id>
# Multiple jobs (batch)
Bash(run_in_background: true):
node "${CLAUDE_PLUGIN_ROOT}/scripts/monitor-progress.mjs" <id1> <id2> <id3>
The script connects to ComfyUI's WebSocket and reports:
- Step-by-step progress (e.g.,
KSampler step 12/20 (60%)) - Success with output filenames and timing
- Errors with node details and messages
The standard generation pattern:
create_workflowor build workflow JSON +enqueue_workflow(action="enqueue")(repeat for batch)- Start background monitor with all prompt_ids
- Continue conversation. Results appear when jobs finish
- Use
get_image (action:"list_outputs")orReadto display the generated images
Do not poll queue (action:"status") in a loop. The background monitor replaces polling entirely.
If the monitor script is unavailable, fall back to queue (action:"status") and poll until done is true.
Queue Management
One tool, queue, driven by its action parameter:
queue(action:"list") shows running/pending job counts and prompt_idsqueue(action:"status") checks if a specific prompt_id is running, pending, or donequeue(action:"cancel") interrupts a running job (pass optionalprompt_idto target a specific one)queue(action:"cancel_queued") removes a specific pending job from the queue byprompt_idqueue(action:"clear") removes all pending jobs (does not stop the currently running job)
When to use queue tools:
- To check status, use
queue(action:"status") for a quick boolean check (prefer the background monitor for ongoing tracking) - To abort,
queue(action:"cancel") stops what's running now andqueue(action:"cancel_queued") removes a pending one - To start fresh,
queue(action:"clear") then optionallyqueue(action:"cancel")
Monitoring & Recovery
get_system_statsreports GPU, VRAM, Python version, OS detailsqueue(action:"list") shows running/pending jobs (also listed above under Queue Management)
When ComfyUI is unresponsive or crashed:
- Try
get_system_stats. If it fails, ComfyUI is down - Use
restart_comfyuiwithaction: "restart"(preserves launch args from a prioraction: "stop") - If restart fails (no saved process info), use
restart_comfyuiwithaction: "start"or ask the user to start it manually - After ComfyUI is back, re-enqueue any failed/lost workflows
When a job appears hung (monitor shows [STALL]):
- Check
get_system_statsand look at VRAM usage (OOM causes hangs) - Try
queue(action:"cancel") to interrupt the stuck job - If cancel fails, use
restart_comfyuito force-restart - Use
clear_vramafter restart to free GPU memory before retrying
KSampler Parameters
| Parameter | Type | Common Values |
|---|---|---|
seed |
int | Random (0 to 2^48). Omit to auto-randomize. |
steps |
int | 20 (standard), 4-8 (turbo/lightning models) |
cfg |
float | 7-8 (SD 1.5/SDXL), 1.0 (Flux), 3.5 (turbo) |
sampler_name |
string | "euler", "euler_ancestral", "dpmpp_2m", "dpmpp_sde" |
scheduler |
string | "normal", "karras", "sgm_uniform" |
denoise |
float | 1.0 (txt2img), 0.5-0.8 (img2img), 0.75-0.9 (inpaint) |
Mermaid Visualization Conventions
The visualize_workflow tool produces mermaid flowcharts with:
- Subgraphs grouping nodes by category:
loading,conditioning,sampling,image,output - Edge labels showing data types:
-->|MODEL|,-->|CLIP|,-->|LATENT|, etc. - Node labels showing class_type and optionally widget values
- Direction
LR(left-to-right) by default,TB(top-to-bottom) for large workflows
The visualize_workflow (action:"mermaid") tool parses mermaid back into workflow JSON, using connection type labels to resolve the correct input/output slots via /object_info schemas.
Common Mistakes to Avoid
- Wrong connection format. Use
["1", 0]not[1, 0]; node IDs are strings - Web UI format. Don't pass
{ nodes: [], links: [] }; use API format - Missing VAE. CheckpointLoaderSimple has 3 outputs: MODEL(0), CLIP(1), VAE(2)
- Wrong output index. Check the node's output list order via
create_workflow (action:"node_info") - Seed handling.
enqueue_workflowrandomizes seeds by default unlessdisable_random_seed: true
Sources
- Official: ComfyUI workflow/API conventions from https://github.com/comfyanonymous/ComfyUI and https://docs.comfy.org
- Empirical: MCP tool recipes and KSampler default tables are product/empirical notes, not a vendor prompting guide.
| 1 | |
| 2 | name comfyui-core |
| 3 | description Core ComfyUI knowledge covering workflow format, node types, pipeline patterns, and MCP tool usage |
| 4 | globs |
| 5 | - "**/*.json" |
| 6 | |
| 7 | |
| 8 | # ComfyUI Core Knowledge |
| 9 | |
| 10 | ## Workflow JSON Format (API Format) |
| 11 | |
| 12 | ComfyUI workflows are JSON objects mapping string node IDs to node definitions: |
| 13 | |
| 14 | |
| 15 | { |
| 16 | "1": { |
| 17 | "class_type": "CheckpointLoaderSimple", |
| 18 | "inputs": { "ckpt_name": "sd_xl_base_1.0.safetensors" }, |
| 19 | "_meta": { "title": "Load Checkpoint" } |
| 20 | }, |
| 21 | "2": { |
| 22 | "class_type": "CLIPTextEncode", |
| 23 | "inputs": { "text": "a cat", "clip": ["1", 1] }, |
| 24 | "_meta": { "title": "Positive Prompt" } |
| 25 | } |
| 26 | } |
| 27 | |
| 28 | |
| 29 | ### Key Rules |
| 30 | |
| 31 | Node IDs are strings of integers (`"1"`, `"2"`, etc.) |
| 32 | `class_type` is the exact Python class name of the node |
| 33 | `inputs` contains both widget values (scalars) and connections (arrays) |
| 34 | Connections use the format `["sourceNodeId", outputIndex]`, a 2-element array where: |
| 35 | the first element is the string node ID of the source node |
| 36 | the second element is the integer index into the source node's `output` list (0-based) |
| 37 | `_meta` is optional and used for display titles only |
| 38 | |
| 39 | ### Connection Examples |
| 40 | |
| 41 | |
| 42 | "model": ["1", 0] // Connect to node 1's first output (MODEL) |
| 43 | "clip": ["1", 1] // Connect to node 1's second output (CLIP) |
| 44 | "vae": ["1", 2] // Connect to node 1's third output (VAE) |
| 45 | "positive": ["2", 0] // Connect to node 2's first output (CONDITIONING) |
| 46 | "samples": ["5", 0] // Connect to node 5's first output (LATENT) |
| 47 | "images": ["6", 0] // Connect to node 6's first output (IMAGE) |
| 48 | |
| 49 | |
| 50 | ### Important: API Format vs Web UI Format |
| 51 | |
| 52 | API format (for execution/analysis) is `{ "1": { class_type, inputs }, "2": { ... } }`. It is compact and used by `enqueue_workflow`, `create_workflow (action:"validate")`, `create_workflow (action:"modify")`, etc. |
| 53 | Web UI format (for saving and frontend editing) is `{ "nodes": [...], "links": [...] }`. It includes layout positions, sizes, groups, and visual metadata so ComfyUI's canvas can open and edit it |
| 54 | Execution tools expect and return API format |
| 55 | Save in Web UI format so saved workflows stay readable and editable in the ComfyUI frontend. A raw API-format save is not canvas-editable. It "exists" in the library but loads blank in the canvas, which strands users and tempts agents into creating yet another new workflow instead of reopening the old one. Because of this, `save_workflow` auto-converts API-format input to Web UI format with a generated layout. Prefer passing real Web UI format (from `get_workflow(action="get", filename=…, format="ui")`), since a generated layout loses the original node positions and groups <!-- API-vs-UI save-format clarification adapted from 1696762169/comfyui-mcp@3da56c9 --> |
| 56 | `get_workflow` defaults to `format="api"` for analysis/execution; use `format="ui"` when loading a workflow to re-save or edit in the canvas |
| 57 | Muted/bypassed nodes are preserved with `_meta.mode: "muted"`. They are inactive but visible for understanding the workflow |
| 58 | Get/Set virtual wire nodes are preserved with `_meta.title` and `Constant` key for tracing data flow |
| 59 | |
| 60 | ### Workflow Library Tools |
| 61 | |
| 62 | `get_workflow(action="analyze", filename=…)` is the first call for understanding any saved workflow. It returns a structured text summary with sections, node IDs, key settings, virtual wires, and connection graph. No raw JSON, just what you need to reason about the workflow. Supports views: summary (default), overview (mermaid), detail (section mermaid), list, flat. |
| 63 | `get_workflow (action:"list")` lists all saved workflows in ComfyUI's user library |
| 64 | `get_workflow(action="get", filename=…)` loads raw workflow JSON. Only use it when you need the actual JSON for `enqueue_workflow`, `create_workflow (action:"modify")`, or `save_workflow`. Use `action="analyze"` instead for understanding. When the JSON is headed back to `save_workflow`, request `format="ui"` so the workflow stays editable in the frontend. |
| 65 | `save_workflow(action="save", filename=…, workflow=…)` saves a workflow to the user library. Pass Web UI format (`{ nodes, links }`) so it keeps its real layout in ComfyUI's canvas. API-format graphs are accepted and auto-converted to Web UI format (with a generated layout) precisely because a raw API-format save is not canvas-editable; the frontend cannot open it. When re-saving an existing workflow, load it with `get_workflow(action="get", filename=…, format="ui")` and edit that, so positions and groups survive. |
| 66 | |
| 67 | ## Data Types |
| 68 | |
| 69 | ComfyUI nodes pass typed data through connections: |
| 70 | |
| 71 | | Type | Description | Common Source | |
| 72 | |------|-------------|---------------| |
| 73 | | `MODEL` | Diffusion model weights | CheckpointLoaderSimple (output 0) | |
| 74 | | `CLIP` | Text encoder | CheckpointLoaderSimple (output 1) | |
| 75 | | `VAE` | Variational autoencoder | CheckpointLoaderSimple (output 2) | |
| 76 | | `CONDITIONING` | Encoded text prompt | CLIPTextEncode (output 0) | |
| 77 | | `LATENT` | Latent space tensor | EmptyLatentImage, KSampler, VAEEncode | |
| 78 | | `IMAGE` | Pixel image tensor (BHWC) | VAEDecode, LoadImage, SaveImage | |
| 79 | | `MASK` | Single-channel mask | LoadImage (output 1) | |
| 80 | | `UPSCALE_MODEL` | Upscaling model | UpscaleModelLoader | |
| 81 | |
| 82 | ## Standard Pipeline Patterns |
| 83 | |
| 84 | ### Text-to-Image (txt2img) |
| 85 | |
| 86 | |
| 87 | CheckpointLoaderSimple → MODEL, CLIP, VAE |
| 88 | ├─ CLIP → CLIPTextEncode (positive) → CONDITIONING |
| 89 | ├─ CLIP → CLIPTextEncode (negative) → CONDITIONING |
| 90 | │ |
| 91 | EmptyLatentImage → LATENT |
| 92 | │ |
| 93 | KSampler (model, positive, negative, latent_image) → LATENT |
| 94 | │ |
| 95 | VAEDecode (samples, vae) → IMAGE |
| 96 | │ |
| 97 | SaveImage (images) |
| 98 | |
| 99 | |
| 100 | Node IDs typically: 1=Checkpoint, 2=Positive, 3=Negative, 4=EmptyLatent, 5=KSampler, 6=VAEDecode, 7=SaveImage |
| 101 | |
| 102 | ### Image-to-Image (img2img) |
| 103 | |
| 104 | Same as txt2img but replace `EmptyLatentImage` with: |
| 105 | |
| 106 | LoadImage → IMAGE |
| 107 | VAEEncode (pixels, vae) → LATENT → KSampler.latent_image |
| 108 | |
| 109 | Set `KSampler.denoise` to 0.5 to 0.8 (lower = closer to input image). |
| 110 | |
| 111 | ### Upscale |
| 112 | |
| 113 | |
| 114 | LoadImage → IMAGE |
| 115 | UpscaleModelLoader → UPSCALE_MODEL |
| 116 | ImageUpscaleWithModel (upscale_model, image) → IMAGE |
| 117 | SaveImage (images) |
| 118 | |
| 119 | |
| 120 | ### Inpaint |
| 121 | |
| 122 | |
| 123 | LoadImage (image) → IMAGE → VAEEncode → LATENT |
| 124 | LoadImage (mask) → MASK |
| 125 | SetLatentNoiseMask (samples, mask) → LATENT → KSampler.latent_image |
| 126 | |
| 127 | |
| 128 | ## MCP Tool Usage Guide |
| 129 | |
| 130 | ### Quick Generation |
| 131 | |
| 132 | `create_workflow` with template `"txt2img"` and your params |
| 133 | `enqueue_workflow(action="enqueue")` with the returned JSON. It returns `prompt_id` immediately |
| 134 | Poll `queue` (action:"status") with the `prompt_id` until `done` is true |
| 135 | Use `get_image (action:"list_outputs")` (limit 1) to find the generated image, then `Read` to display it |
| 136 | |
| 137 | ### Inspect & Modify |
| 138 | |
| 139 | `create_workflow (action:"node_info")` queries what nodes are available and their schemas |
| 140 | `create_workflow (action:"modify")` patches an existing workflow (set_input, add_node, remove_node, connect, insert_between) |
| 141 | `visualize_workflow` shows a workflow as a mermaid diagram |
| 142 | |
| 143 | ### Reverse Engineering |
| 144 | |
| 145 | `visualize_workflow` turns workflow JSON into a mermaid diagram |
| 146 | `visualize_workflow (action:"mermaid")` turns a mermaid diagram into workflow JSON (uses `/object_info` for schema resolution) |
| 147 | |
| 148 | ### Model Management |
| 149 | |
| 150 | `list_local_models` shows what's installed |
| 151 | `download_model` `action:"search"` finds models on HuggingFace |
| 152 | `download_model` downloads to ComfyUI's models directory |
| 153 | |
| 154 | Never ask the user to manually download models. If a required model is missing, search for it and download it yourself: |
| 155 | |
| 156 | Check `list_local_models` first |
| 157 | If missing, search HuggingFace via `download_model` `action:"search"` or CivitAI via their REST API |
| 158 | Use `download_model` to install it directly to the correct subfolder |
| 159 | |
| 160 | CivitAI API (when the `CIVITAI_API_TOKEN` env var is available): |
| 161 | Search: `GET https://civitai.com/api/v1/models?query={query}&types=Checkpoint&sort=Most+Downloaded&limit=5` |
| 162 | Details: `GET https://civitai.com/api/v1/models/{modelId}` |
| 163 | Download: `GET https://civitai.com/api/download/models/{modelVersionId}?token={token}` |
| 164 | |
| 165 | CivitAI is preferred for fine-tuned models, community-rated checkpoints, and specialized LoRAs. |
| 166 | HuggingFace is preferred for official/base models (SDXL, Flux, SD 1.5). |
| 167 | |
| 168 | ### Custom Nodes |
| 169 | |
| 170 | `search_custom_nodes` searches the ComfyUI Registry (`action: "search"`) or gets one pack's details (`action: "details"`) |
| 171 | `list_packs` (`action: "generate_skill"`) auto-generates a skill file for a node pack |
| 172 | |
| 173 | ### Workflow Execution |
| 174 | |
| 175 | `enqueue_workflow` submits to ComfyUI's queue and returns `prompt_id` + queue position immediately. It does not block. |
| 176 | |
| 177 | ### Background Progress Monitoring |
| 178 | |
| 179 | After enqueuing one or more workflows, use a background Bash task to monitor progress silently: |
| 180 | |
| 181 | |
| 182 | # Single job |
| 183 | Bash(run_in_background: true): |
| 184 | node "${CLAUDE_PLUGIN_ROOT}/scripts/monitor-progress.mjs" <prompt_id> |
| 185 | |
| 186 | # Multiple jobs (batch) |
| 187 | Bash(run_in_background: true): |
| 188 | node "${CLAUDE_PLUGIN_ROOT}/scripts/monitor-progress.mjs" <id1> <id2> <id3> |
| 189 | |
| 190 | |
| 191 | The script connects to ComfyUI's WebSocket and reports: |
| 192 | Step-by-step progress (e.g., `KSampler step 12/20 (60%)`) |
| 193 | Success with output filenames and timing |
| 194 | Errors with node details and messages |
| 195 | |
| 196 | The standard generation pattern: |
| 197 | `create_workflow` or build workflow JSON + `enqueue_workflow(action="enqueue")` (repeat for batch) |
| 198 | Start background monitor with all prompt_ids |
| 199 | Continue conversation. Results appear when jobs finish |
| 200 | Use `get_image (action:"list_outputs")` or `Read` to display the generated images |
| 201 | |
| 202 | Do not poll `queue` (action:"status") in a loop. The background monitor replaces polling entirely. |
| 203 | |
| 204 | If the monitor script is unavailable, fall back to `queue` (action:"status") and poll until `done` is true. |
| 205 | |
| 206 | ### Queue Management |
| 207 | |
| 208 | One tool, `queue`, driven by its `action` parameter: |
| 209 | |
| 210 | `queue` (action:"list") shows running/pending job counts and prompt_ids |
| 211 | `queue` (action:"status") checks if a specific prompt_id is running, pending, or done |
| 212 | `queue` (action:"cancel") interrupts a running job (pass optional `prompt_id` to target a specific one) |
| 213 | `queue` (action:"cancel_queued") removes a specific pending job from the queue by `prompt_id` |
| 214 | `queue` (action:"clear") removes all pending jobs (does not stop the currently running job) |
| 215 | |
| 216 | When to use queue tools: |
| 217 | To check status, use `queue` (action:"status") for a quick boolean check (prefer the background monitor for ongoing tracking) |
| 218 | To abort, `queue` (action:"cancel") stops what's running now and `queue` (action:"cancel_queued") removes a pending one |
| 219 | To start fresh, `queue` (action:"clear") then optionally `queue` (action:"cancel") |
| 220 | |
| 221 | ### Monitoring & Recovery |
| 222 | |
| 223 | `get_system_stats` reports GPU, VRAM, Python version, OS details |
| 224 | `queue` (action:"list") shows running/pending jobs (also listed above under Queue Management) |
| 225 | |
| 226 | When ComfyUI is unresponsive or crashed: |
| 227 | Try `get_system_stats`. If it fails, ComfyUI is down |
| 228 | Use `restart_comfyui` with `action: "restart"` (preserves launch args from a prior `action: "stop"`) |
| 229 | If restart fails (no saved process info), use `restart_comfyui` with `action: "start"` or ask the user to start it manually |
| 230 | After ComfyUI is back, re-enqueue any failed/lost workflows |
| 231 | |
| 232 | When a job appears hung (monitor shows `[STALL]`): |
| 233 | Check `get_system_stats` and look at VRAM usage (OOM causes hangs) |
| 234 | Try `queue` (action:"cancel") to interrupt the stuck job |
| 235 | If cancel fails, use `restart_comfyui` to force-restart |
| 236 | Use `clear_vram` after restart to free GPU memory before retrying |
| 237 | |
| 238 | ## KSampler Parameters |
| 239 | |
| 240 | | Parameter | Type | Common Values | |
| 241 | |-----------|------|---------------| |
| 242 | | `seed` | int | Random (0 to 2^48). Omit to auto-randomize. | |
| 243 | | `steps` | int | 20 (standard), 4-8 (turbo/lightning models) | |
| 244 | | `cfg` | float | 7-8 (SD 1.5/SDXL), 1.0 (Flux), 3.5 (turbo) | |
| 245 | | `sampler_name` | string | `"euler"`, `"euler_ancestral"`, `"dpmpp_2m"`, `"dpmpp_sde"` | |
| 246 | | `scheduler` | string | `"normal"`, `"karras"`, `"sgm_uniform"` | |
| 247 | | `denoise` | float | 1.0 (txt2img), 0.5-0.8 (img2img), 0.75-0.9 (inpaint) | |
| 248 | |
| 249 | ## Mermaid Visualization Conventions |
| 250 | |
| 251 | The `visualize_workflow` tool produces mermaid flowcharts with: |
| 252 | |
| 253 | Subgraphs grouping nodes by category: `loading`, `conditioning`, `sampling`, `image`, `output` |
| 254 | Edge labels showing data types: `-->|MODEL|`, `-->|CLIP|`, `-->|LATENT|`, etc. |
| 255 | Node labels showing class_type and optionally widget values |
| 256 | Direction `LR` (left-to-right) by default, `TB` (top-to-bottom) for large workflows |
| 257 | |
| 258 | The `visualize_workflow (action:"mermaid")` tool parses mermaid back into workflow JSON, using connection type labels to resolve the correct input/output slots via `/object_info` schemas. |
| 259 | |
| 260 | ## Common Mistakes to Avoid |
| 261 | |
| 262 | **Wrong connection format.** Use `["1", 0]` not `[1, 0]`; node IDs are strings |
| 263 | **Web UI format.** Don't pass `{ nodes: [], links: [] }`; use API format |
| 264 | **Missing VAE.** CheckpointLoaderSimple has 3 outputs: MODEL(0), CLIP(1), VAE(2) |
| 265 | **Wrong output index.** Check the node's output list order via `create_workflow (action:"node_info")` |
| 266 | **Seed handling.** `enqueue_workflow` randomizes seeds by default unless `disable_random_seed: true` |
| 267 | |
| 268 | ## Sources |
| 269 | |
| 270 | **Official:** ComfyUI workflow/API conventions from https://github.com/comfyanonymous/ComfyUI and https://docs.comfy.org |
| 271 | **Empirical:** MCP tool recipes and KSampler default tables are product/empirical notes, not a vendor prompting guide. |
| 272 |