-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
109 lines (109 loc) · 3.62 KB
/
server.json
File metadata and controls
109 lines (109 loc) · 3.62 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+. 88 tools for workflow building (family-aware: SD 1.5, SDXL, SD 3.5, Flux 2, Qwen-Image, Wan 2.2, LTX-2, HunyuanVideo, Hunyuan3D, ACE-Step, Ernie Image; plus family-agnostic intents: SUPIR super-resolution, RIFE/FILM frame interpolation, SAM 3.1 segmentation, native LoRA training, text-to-audio), queueing, monitoring, persistent snapshots, VRAM safety, subgraph blueprints (13 bundled + native v0.3.67 subgraphs), 6-pass validation (with anti-cycle, deprecated-model lint, and editor-format pre-pass), OpenAPI 3.1 ingestion, Mermaid visualization, PNG workflow ingest, n-dim parameter sweeps, partner-API directory, HuggingFace + CivitAI hub search, comfy-cli lifecycle (install/launch/stop/install_node/download_model), diagnostics (extract_schema/fetch_logs/inspect_workflow/recommend_runtime/suggest_timeout), convenience tools (install_workflow_deps/run_with_inputs/randomize_seeds), streamable-http transport, elicitation-gated destructive ops, and cross-app routing to TouchDesigner / Blender.",
"version": "1.8.1",
"repository": {
"type": "git",
"url": "https://github.com/dreamrec/ComfyPilot"
},
"license": "MIT",
"homepage": "https://github.com/dreamrec/ComfyPilot",
"packages": [
{
"registry": "pypi",
"name": "comfypilot",
"version": "1.8.1"
}
],
"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"
]
}