-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathserver.json
More file actions
109 lines (109 loc) · 2.92 KB
/
Copy pathserver.json
File metadata and controls
109 lines (109 loc) · 2.92 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"$schema": "https://modelcontextprotocol.io/schemas/server.json",
"name": "io.github.dreamrec/comfypilot",
"description": "MCP server for ComfyUI v0.20 through v0.31.1+. 96 tools for strict workflow validation, canonical jobs, resilient events, Desktop instance control, generic artifacts, isolated workers, queueing, monitoring, persistent snapshots, VRAM safety, model-family builders, lifecycle, diagnostics, and output routing.",
"version": "1.9.0",
"repository": {
"type": "git",
"url": "https://github.com/dreamrec/ComfyPilot"
},
"license": "MIT",
"homepage": "https://github.com/dreamrec/ComfyPilot",
"packages": [
{
"registry": "pypi",
"name": "comfypilot",
"version": "1.9.0"
}
],
"runtime": {
"command": "uv",
"args": [
"run",
"comfypilot"
],
"env": {
"COMFY_URL": {
"description": "ComfyUI server URL",
"default": "http://127.0.0.1:8188"
},
"COMFY_API_KEY": {
"description": "Optional API key (Authorization: Bearer for local, X-API-Key for Comfy Cloud)",
"default": ""
},
"COMFY_AUTH_METHOD": {
"description": "auto | bearer | x-api-key",
"default": "auto"
},
"COMFY_TIMEOUT": {
"description": "HTTP request timeout in seconds",
"default": "300"
},
"COMFY_SNAPSHOT_LIMIT": {
"description": "Max workflow snapshots retained in memory",
"default": "50"
},
"COMFY_SNAPSHOT_DIR": {
"description": "Optional directory to persist snapshots across restarts. If unset, snapshots are in-memory only.",
"default": ""
},
"COMFY_BLUEPRINT_DIR": {
"description": "User blueprint directory (bundled examples still available)",
"default": "~/.comfypilot/blueprints"
},
"COMFY_OUTPUT_DIR": {
"description": "Disk output directory",
"default": "~/comfypilot_output"
},
"COMFY_TD_OUTPUT_DIR": {
"description": "TouchDesigner output path",
"default": "~/comfypilot_output/touchdesigner"
},
"COMFY_BLENDER_OUTPUT_DIR": {
"description": "Blender output path",
"default": "~/comfypilot_output/blender"
}
}
},
"transports": [
"stdio",
"streamable-http"
],
"capabilities": {
"tools": true,
"resources": true,
"resource_templates": true,
"prompts": false,
"completions": false,
"elicitation": true,
"sampling": false,
"logging": true
},
"keywords": [
"comfyui",
"stable-diffusion",
"sdxl",
"sd3.5",
"flux",
"flux2",
"qwen-image",
"wan",
"wan2.2",
"ltx",
"ltx-2",
"hunyuan",
"hunyuanvideo",
"hunyuan3d",
"ace-step",
"image-generation",
"video-generation",
"music-generation",
"image-to-3d",
"workflow-automation",
"subgraph-blueprints",
"mcp",
"mcp-server",
"agent",
"ai"
]
}