comfyui-mcp 0.4.0 → 0.4.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/README.md +4 -0
- package/package.json +2 -1
- package/server.json +21 -0
package/README.md
CHANGED
|
@@ -591,6 +591,10 @@ MIT — see [LICENSE](./LICENSE) for details.
|
|
|
591
591
|
|
|
592
592
|
## Changelog
|
|
593
593
|
|
|
594
|
+
### 0.4.1 — 2026-05-21
|
|
595
|
+
|
|
596
|
+
- Added `server.json` and an `mcpName` field to `package.json` for publishing to the official [MCP Registry](https://github.com/modelcontextprotocol/registry) (`io.github.artokun/comfyui-mcp`).
|
|
597
|
+
|
|
594
598
|
### 0.4.0 — 2026-05-20
|
|
595
599
|
|
|
596
600
|
**Iteration & convenience tools** — closing the generate → see → iterate loop:
|
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "comfyui-mcp",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.1",
|
|
4
|
+
"mcpName": "io.github.artokun/comfyui-mcp",
|
|
4
5
|
"description": "MCP server for ComfyUI — workflow execution, visualization, composition, registry, and skill generation",
|
|
5
6
|
"type": "module",
|
|
6
7
|
"main": "dist/index.js",
|
package/server.json
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-09-29/server.schema.json",
|
|
3
|
+
"name": "io.github.artokun/comfyui-mcp",
|
|
4
|
+
"description": "MCP server + Claude Code plugin for ComfyUI: run workflows, generate images, manage models & VRAM.",
|
|
5
|
+
"repository": {
|
|
6
|
+
"url": "https://github.com/artokun/comfyui-mcp",
|
|
7
|
+
"source": "github"
|
|
8
|
+
},
|
|
9
|
+
"version": "0.4.1",
|
|
10
|
+
"packages": [
|
|
11
|
+
{
|
|
12
|
+
"registryType": "npm",
|
|
13
|
+
"registryBaseUrl": "https://registry.npmjs.org",
|
|
14
|
+
"identifier": "comfyui-mcp",
|
|
15
|
+
"version": "0.4.1",
|
|
16
|
+
"transport": {
|
|
17
|
+
"type": "stdio"
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
]
|
|
21
|
+
}
|