ComfyUI MCP Server

ComfyUI MCP Server

Enables orchestration of ComfyUI workflows through natural language by discovering workflow templates, applying mutations, and submitting prompts to running ComfyUI instances. Provides asset validation and lightweight tooling for AI image generation experimentation.

Category
Visit Server

README

ComfyUI MCP Server

An experimental Model Context Protocol (MCP) server that orchestrates ComfyUI workflows. The runtime discovers workflow templates, validates model assets, lets you tweak high-level parameters, and submits prompts to a running ComfyUI instance.

  • Workflow discovery – load JSON templates from a directory hierarchy and expose human-readable summaries.
  • Asset cataloguing – scan checkpoints, LoRAs, VAEs, text encoders, and embeddings so MCP clients can target valid resources.
  • High-level mutations – update prompts, samplers, LoRA stacks, and resolution bounds without hand editing graph JSON.
  • Execution tooling – run workflows through the ComfyUI API with optional live streaming of prompt updates.

Prerequisites

  • Python 3.11+
  • A running ComfyUI instance reachable over HTTP (defaults to http://127.0.0.1:8188)
  • Access to the workflow JSON templates and any model asset directories you plan to expose

Installation

  1. Clone the repository

    git clone https://github.com/<your-org>/ComfyUI_MCP.git
    cd ComfyUI_MCP
    
  2. Create an isolated environment (recommended)

    python -m venv .venv
    source .venv/bin/activate
    # or use uv: uv venv
    
  3. Install the package

    pip install -e .
    # or: uv pip install --editable .
    

This installs two console scripts:

  • comfyui-mcp – helper CLI for inspecting assets and workflows
  • comfyui-mcp-serve – FastMCP runtime that exposes MCP tools over stdio, SSE, or streamable HTTP

Configuration

Configuration is provided via a TOML file. Start by copying the example file and customising the values:

cp config.example.toml ~/.config/comfyui-mcp.toml

Example configuration

# ~/.config/comfyui-mcp.toml
base_url = "http://127.0.0.1:8188"
# default_workflow = "basic_workflow"

[directories]
# Each value maps to a ComfyUI model API endpoint or folder name that can be
# queried remotely. Supply fully qualified endpoints ("/models/checkpoints")
# or the folder alias returned by ``GET /models`` ("checkpoints", "vae", etc.).
checkpoints = "/models/checkpoints"
loras = "/models/loras"
vaes = "/models/vae"
text_encoders = "/models/clip"
embeddings = "/models/embeddings"

[default_bounds]
cfg_min = 1.0
cfg_max = 20.0
steps_min = 1
steps_max = 150
width_min = 128
width_max = 2048
height_min = 128
height_max = 2048

[feature_toggles]
# enable_streaming controls live prompt updates when executing workflows
enable_streaming = true
# enable_batch_execution toggles multi-workflow prompts (experimental)
enable_batch_execution = false
# watch_workflows rescan templates when files on disk change
watch_workflows = false

Environment overrides

Environment variables prefixed with COMFYUI_MCP_ override configuration values at runtime. Common examples:

  • COMFYUI_MCP_CONFIG – path to the TOML file (used by the runtime launcher)
  • COMFYUI_MCP_BASE_URL – override the ComfyUI HTTP endpoint
  • COMFYUI_MCP_DIRECTORIES_CHECKPOINTS – point to a different checkpoints folder
  • COMFYUI_MCP_FEATURES_WATCH_WORKFLOWS – toggle template reloading without editing the config file

CLI usage

Inspect templates and assets before wiring the server into an MCP client:

# List discovered workflow templates
comfyui-mcp list --config ~/.config/comfyui-mcp.toml --json

# Describe a template including semantic roles and graph metadata
comfyui-mcp describe basic_workflow --config ~/.config/comfyui-mcp.toml --json

# Enumerate checkpoints, LoRAs, VAEs, text encoders, and embeddings
comfyui-mcp assets --config ~/.config/comfyui-mcp.toml --json

CLI flags allow ad-hoc overrides without editing your TOML file:

comfyui-mcp list \
  --base-url http://localhost:8188 \
  --workflows-path ~/comfyui-mcp/workflows \
  --directory checkpoints=~/models/StableDiffusion \
  --json

Running the MCP server

Use comfyui-mcp-serve to expose the workflow tools to MCP clients. Choose a transport based on your integration target.

# stdio transport (ideal for IDE plugins / Cursor)
COMFYUI_MCP_CONFIG=~/.config/comfyui-mcp.toml \
  comfyui-mcp-serve --transport stdio

# Streamable HTTP transport (FastMCP HTTP gateway)
COMFYUI_MCP_CONFIG=~/.config/comfyui-mcp.toml \
  comfyui-mcp-serve --transport streamable-http --host 0.0.0.0 --port 8000

Optional flags:

  • --instructions – override the instruction string advertised to MCP clients
  • --host/--port – adjust bindings for HTTP/SSE transports

The runtime validates configured asset directories on startup and will exit with descriptive errors if any paths are missing or unreadable.


IDE / agent integration

Many MCP-aware tools (Cursor, Claude Desktop, Windsurf, etc.) accept a JSON manifest describing available servers. The snippet below embeds the ComfyUI MCP server alongside other backends using the same structure as Cursor's mcpServers configuration.

{
  "mcpServers": {
    "comfyui-control": {
      "command": "uv",
      "args": [
        "run",
        "--with",
        "fastmcp",
        "--with",
        "aiohttp",
        "--with",
        "orjson",
        "--with",
        "python-dotenv",
        "--with",
        "pydantic",
        "comfyui-mcp-serve",
        "--transport",
        "stdio"
      ],
      "env": {
        "COMFYUI_MCP_CONFIG": "/data/comfy_ui_mcp/config.toml",
        "PYTHONUNBUFFERED": "1"
      }
    }
  }
}

Adjust the COMFYUI_MCP_CONFIG path and any Python dependency flags to match your environment. When Cursor or another MCP client launches, it will spawn comfyui-mcp-serve over stdio using the configuration you supplied.

If you prefer to mirror the repository's bundled mcp.json, copy the file and tweak the command, transport, or environment variables as needed for your setup.


Repository layout

  • src/comfyui_mcp/ – server implementation, CLI, and FastMCP runtime glue
  • workflows/ – example workflow templates discovered by default
  • docs/ – additional design notes and reference material
  • tests/ – unit tests for asset discovery and workflow mutation helpers

Contributing

Bug reports and pull requests are welcome! Please include reproduction steps and relevant ComfyUI versions when filing issues.


License

Distributed under the MIT license. See LICENSE (or the top-level repository metadata) for details.

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured