🚀 Socket Launch Week Day 4:Socket MCP Adds Org Alerts, Threat Feed Review, and Package Inspection.Learn more
Sign In

@fre4x/comfyui

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@fre4x/comfyui - npm Package Compare versions

Comparing version
1.0.65
to
1.1.0-beta.1
+1
-1
package.json
{
"name": "@fre4x/comfyui",
"version": "1.0.65",
"version": "1.1.0-beta.1",
"description": "MCP server for ComfyUI. Execute workflows and probe server state remotely.",

@@ -5,0 +5,0 @@ "type": "module",

@@ -63,2 +63,5 @@ # ComfyUI MCP Server

`comfyui_workflow_run` accepts either a stored workflow reference
(`workflow_id` / `workflow_file_path`) or an inline `workflow` JSON object.
## Stored Workflow Reuse

@@ -75,3 +78,5 @@

`comfyui_workflow_run` and `comfyui_save_workflow` both accept dot-notation
overrides in this form:
overrides in canonical `node.inputs.field` form, plus shorter aliases like
`node.seed`, `node.text`, `node.positive_prompt`, and, for Web UI workflows,
`node.widgets[index]`.

@@ -82,4 +87,4 @@ ```json

"overrides": {
"2.inputs.seed": 67890,
"6.inputs.text": "cinematic dragon portrait"
"2.seed": 67890,
"6.positive_prompt": "cinematic dragon portrait"
},

@@ -91,2 +96,12 @@ "await": true,

If your client serializes nested arguments first, `overrides` may also be sent
as a JSON string:
```json
{
"workflow_id": "pony-portrait-v1",
"overrides": "{\"2.seed\":67890,\"6.positive_prompt\":\"cinematic dragon portrait\"}"
}
```
To inspect editable inputs and semantic hints for agent editing:

@@ -101,2 +116,6 @@

`comfyui_get_workflow` also returns a copy-ready `override_examples` object in
both `content.text` and `structuredContent` so agents can paste a valid payload
without rebuilding the shape by hand.
To save a new or edited workflow locally:

@@ -108,4 +127,4 @@

"overrides": {
"6.inputs.text": "studio lighting, ultra detailed",
"7.inputs.filename_prefix": "pony-portrait-agent"
"6.text": "studio lighting, ultra detailed",
"7.filename_prefix": "pony-portrait-agent"
},

@@ -112,0 +131,0 @@ "output_file_name": "pony-portrait-agent.json",

Sorry, the diff of this file is too big to display