list_workflows
Retrieve built-in workflow templates for use as baseline configurations. Provides named workflows ready for customization.
Instructions
List built-in workflow templates shipped with this MCP server. These are the named workflows that can be used as a baseline; for arbitrary workflows use generate_with_workflow.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/comfyui/workflows.ts:310-317 (helper)The BUILTIN_WORKFLOWS constant array defines the list of built-in workflow names: 'txt2img', 'img2img', 'upscale', 'controlnet', and 'ip_adapter'. This is the data source for the list_workflows tool.
export const BUILTIN_WORKFLOWS = [ "txt2img", "img2img", "upscale", "controlnet", "ip_adapter", ] as const; export type BuiltinWorkflow = (typeof BUILTIN_WORKFLOWS)[number];