comfy_workflows
List, search, register, validate, and retrieve curated ComfyUI workflow definitions to reuse and manage image/video generation pipelines without the node editor.
Instructions
Manage curated ComfyUI workflow definitions.
Return Format
{"success": bool, "workflows": [...], "workflow": {...}, "sources": [...], "message": str}
Examples
comfy_workflows(operation="list")
comfy_workflows(operation="search", query="flux", tags="video")
comfy_workflows(operation="discover")
comfy_workflows(operation="register", workflow_id="my-wf",
workflow_json='{"3":{"class_type":"KSampler",...}}',
tags="t2i,portrait", source_url="https://civitai.com/...")Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | Display name for register. | |
| tags | No | Comma-separated tags for search/register. | |
| query | No | Search text for search operation. | |
| operation | Yes | Operation to perform. | |
| source_url | No | Original source URL for register. | |
| description | No | Description for register. | |
| workflow_id | No | Workflow ID for get/validate/register. | |
| workflow_json | No | JSON string for register. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||