comfy_save_workflow
Save workflow JSON to the MCP library with metadata like description and tags for organized reuse and management.
Instructions
Save a workflow JSON to the MCP library for later reuse. Includes metadata like description and tags for organization.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | ||
| workflow | Yes | ||
| description | No | ||
| tags | No | ||
| overwrite | No |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"type": "string"
},
"name": {
"pattern": "^[a-zA-Z0-9_-]+$",
"type": "string"
},
"overwrite": {
"default": false,
"type": "boolean"
},
"tags": {
"items": {
"type": "string"
},
"type": "array"
},
"workflow": {
"anyOf": [
{
"type": "string"
},
{
"additionalProperties": {},
"type": "object"
}
]
}
},
"required": [
"name",
"workflow"
],
"type": "object"
}