comfyui-mcp 0.11.0 → 0.11.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +21 -0
- package/README.md +10 -4
- package/package.json +15 -4
- package/plugin/.mcp.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,27 @@ All notable changes to this project are documented here. This project adheres to
|
|
|
8
8
|
|
|
9
9
|
### Added
|
|
10
10
|
|
|
11
|
+
- **`model-registry` plugin skill** — one curated table of download URLs +
|
|
12
|
+
target `models/` subdirs for every model the skills reference (Flux, WAN,
|
|
13
|
+
LTX, Qwen, Z-Image, shared VAEs/text-encoders), consolidating rows that
|
|
14
|
+
were scattered across `model-settings.json` and individual skills. Grows
|
|
15
|
+
each release. Plugin is now **15 skills**.
|
|
16
|
+
- **Plugin ships channels mode by default** — `plugin/.mcp.json` now passes
|
|
17
|
+
`--channels`, so plugin users get the panel bridge + `panel_*` tools
|
|
18
|
+
automatically (pair with the
|
|
19
|
+
[comfyui-mcp-panel](https://github.com/artokun/comfyui-mcp-panel) pack).
|
|
20
|
+
|
|
21
|
+
### Changed
|
|
22
|
+
|
|
23
|
+
- **Discoverability:** README leads with "the Claude Code plugin for
|
|
24
|
+
ComfyUI" and the real asset counts (88 tools / 15 skills / 11 commands /
|
|
25
|
+
4 agents / 4 hooks — previously undersold as 6 skills / 10 commands);
|
|
26
|
+
corrected the plugin install command (`/plugin marketplace add` +
|
|
27
|
+
`/plugin install comfy`); npm description + keywords expanded; GitHub
|
|
28
|
+
repo topics added (both repos had zero); new docs page
|
|
29
|
+
[`/plugin`](https://comfyui-mcp.artokun.io/docs/plugin) documenting the
|
|
30
|
+
full skill/command/agent/hook surface.
|
|
31
|
+
|
|
11
32
|
- **Channels mode (`--channels`) — your own agent session drives the ComfyUI
|
|
12
33
|
sidebar panel. No LLM API keys.** The server hosts a loopback WebSocket
|
|
13
34
|
bridge (`COMFYUI_MCP_BRIDGE_PORT`, default 9101) that the
|
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
# comfyui-mcp
|
|
1
|
+
# comfyui-mcp — the Claude Code plugin for ComfyUI
|
|
2
2
|
|
|
3
|
-
**
|
|
3
|
+
**Claude Code plugin + MCP server for [ComfyUI](https://github.com/comfyanonymous/ComfyUI)** — generate images and video, execute and author workflows, manage models and custom nodes, and **edit your live ComfyUI graph from your Claude session** ([sidebar panel](https://github.com/artokun/comfyui-mcp-panel), zero API keys).
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/comfyui-mcp)
|
|
6
6
|
[](https://nodejs.org)
|
|
@@ -12,7 +12,9 @@
|
|
|
12
12
|
|
|
13
13
|
Works on **macOS**, **Linux**, and **Windows**. Auto-detects your ComfyUI installation and port.
|
|
14
14
|
|
|
15
|
-
**
|
|
15
|
+
**88 MCP tools** | **15 AI skills** (Flux · WAN · LTX video · Qwen · Z-Image · model registry · node authoring) | **11 slash commands** | **4 autonomous agents** | **4 hooks**
|
|
16
|
+
|
|
17
|
+
The plugin ships **expert skills that grow with every release** — model-specific generation guides with curated download URLs, workflow recipes, troubleshooting, and custom-node authoring — so Claude knows the right sampler, CFG, resolution, and model files for each architecture without trial and error.
|
|
16
18
|
|
|
17
19
|
📖 **Full documentation: [comfyui-mcp.artokun.io/docs](https://comfyui-mcp.artokun.io/docs)**
|
|
18
20
|
|
|
@@ -63,7 +65,9 @@ This package also ships as a **Claude Code plugin**, providing slash commands, s
|
|
|
63
65
|
### Install as a plugin
|
|
64
66
|
|
|
65
67
|
```bash
|
|
66
|
-
|
|
68
|
+
# In Claude Code
|
|
69
|
+
/plugin marketplace add artokun/comfyui-mcp
|
|
70
|
+
/plugin install comfy
|
|
67
71
|
```
|
|
68
72
|
|
|
69
73
|
### Slash commands
|
|
@@ -83,6 +87,8 @@ claude plugin install comfyui-mcp
|
|
|
83
87
|
|
|
84
88
|
### Built-in skills
|
|
85
89
|
|
|
90
|
+
15 skills total — model-family guides (Flux, WAN, LTX, Qwen, Z-Image), the **model-registry** (curated download URLs), node authoring, and the core four below. Full list on the [plugin docs page](https://comfyui-mcp.artokun.io/docs/plugin).
|
|
91
|
+
|
|
86
92
|
| Skill | Description |
|
|
87
93
|
|-------|-------------|
|
|
88
94
|
| **comfyui-core** | Workflow format, node types, data flow patterns, pipeline architecture, MCP tool usage guide |
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "comfyui-mcp",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.1",
|
|
4
4
|
"mcpName": "io.github.artokun/comfyui-mcp",
|
|
5
|
-
"description": "MCP server for ComfyUI
|
|
5
|
+
"description": "Claude Code plugin + MCP server for ComfyUI - 88 tools, 14 AI skills (Flux, WAN, LTX video, Qwen), live graph editing from your Claude session. Generate images & video, manage models and custom nodes.",
|
|
6
6
|
"homepage": "https://comfyui-mcp.artokun.io/docs",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"main": "dist/index.js",
|
|
@@ -61,11 +61,22 @@
|
|
|
61
61
|
"keywords": [
|
|
62
62
|
"comfyui",
|
|
63
63
|
"mcp",
|
|
64
|
+
"mcp-server",
|
|
64
65
|
"model-context-protocol",
|
|
66
|
+
"claude-code",
|
|
67
|
+
"claude-plugin",
|
|
68
|
+
"claude-skills",
|
|
69
|
+
"agent-skills",
|
|
65
70
|
"stable-diffusion",
|
|
66
71
|
"image-generation",
|
|
67
|
-
"
|
|
68
|
-
"
|
|
72
|
+
"video-generation",
|
|
73
|
+
"text-to-image",
|
|
74
|
+
"flux",
|
|
75
|
+
"wan",
|
|
76
|
+
"ltx-video",
|
|
77
|
+
"ai-agent",
|
|
78
|
+
"comfyui-extension",
|
|
79
|
+
"workflow-automation"
|
|
69
80
|
],
|
|
70
81
|
"author": "artokun",
|
|
71
82
|
"license": "MIT",
|