Machine Learning

ComfyUI Knowledge MCP Server

Chat with AI and run tools instantly.

Materialized ComfyUI node catalog from object_info plus curated API prompt templates and offline workflow validation for building graphs without querying the live instance on every turn.

Managed
6 tools
Agent guide included

Chat with AI and run tools instantly.

Browse all tools

AI Skill
SKILL.md

Domain knowledge for ComfyUI Knowledge — workflow patterns, data models, and gotchas for your AI agent.

ComfyUI Knowledge

Search node schemas, browse curated API prompt templates, and validate workflow JSON offline before queueing on the user's GPU.

Workflow

  1. Discover nodescomfyui_index_search_nodes by name or category (sampling, loaders, image, etc.).
  2. Inspect schemacomfyui_index_get_node for required/optional inputs and output types.
  3. Find starterscomfyui_index_search_templates then comfyui_index_get_template for full API prompt JSON.
  4. Validate offlinecomfyui_index_validate_draft before comfyui_run_workflow to catch bad wires and unknown classes.
  5. Learn patternscomfyui_index_get_guides for API prompt shape and the txt2img build loop.

API prompt shape

  • Top-level keys are string node ids ("3", "4", …).
  • Each node is ["NodeClass", {inputs}] or {"class_type": "NodeClass", "inputs": {...}}.
  • Wires use ["source_node_id", output_index] (usually index 0).
  • End graphs with SaveImage or PreviewImage so comfyui_get_history / comfyui_get_image can fetch outputs.

Gotchas

  • ckpt_name and other model filenames must exist on the user's ComfyUI install (comfyui_list_models).
  • Custom nodes may be missing from the index — use comfyui_get_node_info live or refresh the dataset after upgrades.
  • Indexed schemas come from object_info at refresh time; they differ across ComfyUI versions and installed custom nodes.

Tools in this Server (6)

Comfyui Index Get Guides

List or fetch workflow-building guides for ComfyUI API prompts and the discover-validate-run loop.

Comfyui Index Get Node

Get one node's input/output schema from the knowledge index. For custom nodes not in the index, use comfyui_get_node_info on the live instance.

Comfyui Index Get Template

Fetch one curated template including the API prompt JSON ready for comfyui_run_workflow.

Comfyui Index Search Nodes

Search the materialized ComfyUI node catalog (object_info). Use before building API prompt JSON for comfyui_run_workflow.

Comfyui Index Search Templates

Search curated ComfyUI API prompt templates with starter graphs for common tasks.

Comfyui Index Validate Draft

Validate ComfyUI API prompt JSON offline: node shape, wire references, unknown classes, and missing output nodes. Run before comfyui_run_workflow.

Frequently Asked Questions

What is the ComfyUI Knowledge MCP server?

Materialized ComfyUI node catalog from object_info plus curated API prompt templates and offline workflow validation for building graphs without querying the live instance on every turn. It provides 6 tools that AI agents can use through the Model Context Protocol (MCP).

How do I connect ComfyUI Knowledge to my AI agent?

Add the MCPBundles server URL to your MCP client configuration (Claude Desktop, Cursor, VS Code, etc.). The URL format is: https://mcp.mcpbundles.com/bundle/comfyui-knowledge. Authentication is handled automatically.

How many tools does ComfyUI Knowledge provide?

ComfyUI Knowledge provides 6 tools that can be called by AI agents, along with a SKILL.md that gives your AI agent domain knowledge about when and how to use them.

What authentication does ComfyUI Knowledge require?

ComfyUI Knowledge uses open data APIs — no authentication required.

Setup Instructions

Connect ComfyUI Knowledge to any MCP client in minutes

MCP URL
https://mcp.mcpbundles.com/bundle/comfyui-knowledge

One-click install:

The link prefills the Add custom connector dialog — you still review the values and click Add, then Connect to complete OAuth.

Or add manually

  1. Open claude.ai → Settings → Connectors.
  2. Click the + button and choose Add custom connector.
  3. Set Name to ComfyUI Knowledge and paste the MCP URL into Remote MCP server URL.
  4. Click Add. ComfyUI Knowledge will appear under Not connected — select it and click Connect to complete OAuth.
Name: ComfyUI Knowledge
Remote MCP server URL: https://mcp.mcpbundles.com/bundle/comfyui-knowledge
Authentication: OAuth

Custom connectors at claude.ai require a paid Claude plan (Pro, Max, Team, or Enterprise).

Try ComfyUI Knowledge now

No API key or third-party login required. Chat with AI and run tools instantly.

ComfyUI Knowledge MCP Server & Skill — 6 Tools