Skip to main content

Pixelle MCP: Convert ComfyUI workflows into MCP Tools with a single command, providing an MCP server and a Chainlit-based web UI.

Project description

๐ŸŽจ Pixelle MCP - Omnimodal Agent Framework

English | ไธญๆ–‡

โœจ An AIGC solution based on the MCP protocol, seamlessly converting ComfyUI workflows into MCP tools with zero code, empowering LLM and ComfyUI integration.

https://github.com/user-attachments/assets/65422cef-96f9-44fe-a82b-6a124674c417

๐Ÿ“‹ Recent Updates

  • โœ… 2025-08-12: Integrated the LiteLLM framework, adding multi-model support for Gemini, DeepSeek, Claude, Qwen, and more

๐Ÿš€ Features

  • โœ… ๐Ÿ”„ Full-modal Support: Supports TISV (Text, Image, Sound/Speech, Video) full-modal conversion and generation
  • โœ… ๐Ÿงฉ ComfyUI Ecosystem: Server-side is built on ComfyUI, inheriting all capabilities from the open ComfyUI ecosystem
  • โœ… ๐Ÿ”ง Zero-code Development: Defines and implements the Workflow-as-MCP Tool solution, enabling zero-code development and dynamic addition of new MCP Tools
  • โœ… ๐Ÿ—„๏ธ MCP Server: Server provides functionality based on the MCP protocol, supporting integration with any MCP client (including but not limited to Cursor, Claude Desktop, etc.)
  • โœ… ๐ŸŒ MCP Client: Client is developed based on the Chainlit framework, inheriting Chainlit's UI controls and supporting integration with more MCP Servers
  • โœ… ๐Ÿ”„ Flexible Deployment: Supports standalone deployment of Server-side only as MCP Server, or standalone deployment of Client-side only as MCP Client, or combined deployment
  • โœ… โš™๏ธ Unified Configuration: Uses YAML configuration scheme, one config file manages all services
  • โœ… ๐Ÿค– Multi-LLM Support: Supports multiple mainstream LLMs, including OpenAI, Ollama, Gemini, DeepSeek, Claude, Qwen, and more

๐Ÿ“ Project Structure

  • mcp-base: ๐Ÿ”ง Basic service, provides file storage and shared service capabilities
  • mcp-client: ๐ŸŒ MCP client, a web interface built on Chainlit
  • mcp-server: ๐Ÿ—„๏ธ MCP server, provides various AIGC tools and services

๐Ÿƒโ€โ™‚๏ธ Quick Start

๐Ÿ“ฅ 1. Clone the Source Code & Configure Services

๐Ÿ“ฆ 1.1 Clone the Source Code

git clone https://github.com/AIDC-AI/Pixelle-MCP.git
cd Pixelle-MCP

โš™๏ธ 1.2 Configure Services

The project uses a unified YAML configuration scheme:

# Copy the configuration example file
cp config.yml.example config.yml
# Edit configuration items as needed

๐Ÿ“‹ Detailed Configuration Instructions:

The configuration file contains three main sections: Basic Service, MCP Server, and MCP Client. Each section has detailed configuration item descriptions in config.yml.example.

๐Ÿ” Configuration Checklist:

  • โœ… Copied config.yml.example to config.yml
  • โœ… Configured ComfyUI service address (ensure ComfyUI is running)
  • โœ… Configured at least one LLM model (OpenAI or Ollama)
  • โœ… Port numbers are not occupied by other services (9001, 9002, 9003)

๐Ÿ”ง 2. Add MCP Tool (Optional)

This step is optional and only affects your Agent's capabilities. You can skip it if not needed for now.

The mcp-server/workflows directory contains a set of popular workflows by default. Run the following command to copy them to your mcp-server. When the service starts, they will be automatically converted into MCP Tools for LLM use.

Note: It is strongly recommended to test the workflow in your ComfyUI canvas before copying, to ensure smooth execution later.

cp -r pixelle/workflows/* pixelle/data/custom_workflows/

๐Ÿš€ 3. Start the Services

๐ŸŽฏ 3.1 Start with Docker (Recommended)

# Start all services
docker compose up -d

๐Ÿ› ๏ธ 3.2 CLI Start (Recommended)

Requires uv environment.

Cross-platform CLI commands:

# Interactive mode (recommended for first-time users)
uv run pixelle

# Direct start in foreground
uv run pixelle start

# Start in background daemon mode
uv run pixelle start --daemon

# Force start (kill conflicting processes and start)
uv run pixelle start --force

# Combine options: background + force
uv run pixelle start --daemon --force
# Or use short form: uv run pixelle start -df

Service management:

# Check service status
uv run pixelle status

# Stop service
uv run pixelle stop

# View logs
uv run pixelle logs

# Follow logs in real-time
uv run pixelle logs --follow

๐Ÿ› ๏ธ 3.3 Development Mode (Advanced)

For development purposes, you can also run the service directly:

# Install dependencies (only needed on first run or after updates)
uv sync

# Start service directly (equivalent to pixelle start)
uv run python -m pixelle.main

# Or run with development mode
uv run python -m pixelle.main --reload

Note: For production use, it's recommended to use the CLI commands above for better process management and logging.

๐ŸŒ 4. Access the Services

After startup, you can access the Pixelle MCP service:

CLI Mode (Recommended)

Note: The default port is 9004, but you can configure it in your .env file with PORT=your_preferred_port.

Docker Mode

๐Ÿ› ๏ธ Add Your Own MCP Tool

โšก One workflow = One MCP Tool

๐ŸŽฏ 1. Add the Simplest MCP Tool

  • ๐Ÿ“ Build a workflow in ComfyUI for image Gaussian blur (Get it here), then set the LoadImage node's title to $image.image! as shown below:

  • ๐Ÿ“ค Export it as an API format file and rename it to i_blur.json. You can export it yourself or use our pre-exported version (Get it here)

  • ๐Ÿ“‹ Copy the exported API workflow file (must be API format), input it on the web page, and let the LLM add this Tool

  • โœจ After sending, the LLM will automatically convert this workflow into an MCP Tool

  • ๐ŸŽจ Now, refresh the page and send any image to perform Gaussian blur processing via LLM

๐Ÿ”Œ 2. Add a Complex MCP Tool

The steps are the same as above, only the workflow part differs (Download workflow: UI format and API format)

๐Ÿ”ง ComfyUI Workflow Custom Specification

๐ŸŽจ Workflow Format

The system supports ComfyUI workflows. Just design your workflow in the canvas and export it as API format. Use special syntax in node titles to define parameters and outputs.

๐Ÿ“ Parameter Definition Specification

In the ComfyUI canvas, double-click the node title to edit, and use the following DSL syntax to define parameters:

$<param_name>.[~]<field_name>[!][:<description>]

๐Ÿ” Syntax Explanation:

  • param_name: The parameter name for the generated MCP tool function
  • ~: Optional, indicates URL parameter upload processing, returns relative path
  • field_name: The corresponding input field in the node
  • !: Indicates this parameter is required
  • description: Description of the parameter

๐Ÿ’ก Example:

Required parameter example:

  • Set LoadImage node title to: $image.image!:Input image URL
  • Meaning: Creates a required parameter named image, mapped to the node's image field

URL upload processing example:

  • Set any node title to: $image.~image!:Input image URL
  • Meaning: Creates a required parameter named image, system will automatically download URL and upload to ComfyUI, returns relative path

๐Ÿ“ Note: LoadImage, VHS_LoadAudioUpload, VHS_LoadVideo and other nodes have built-in functionality, no need to add ~ marker

Optional parameter example:

  • Set EmptyLatentImage node title to: $width.width:Image width, default 512
  • Meaning: Creates an optional parameter named width, mapped to the node's width field, default value is 512

๐ŸŽฏ Type Inference Rules

The system automatically infers parameter types based on the current value of the node field:

  • ๐Ÿ”ข int: Integer values (e.g. 512, 1024)
  • ๐Ÿ“Š float: Floating-point values (e.g. 1.5, 3.14)
  • โœ… bool: Boolean values (e.g. true, false)
  • ๐Ÿ“ str: String values (default type)

๐Ÿ“ค Output Definition Specification

๐Ÿค– Method 1: Auto-detect Output Nodes

The system will automatically detect the following common output nodes:

  • ๐Ÿ–ผ๏ธ SaveImage - Image save node
  • ๐ŸŽฌ SaveVideo - Video save node
  • ๐Ÿ”Š SaveAudio - Audio save node
  • ๐Ÿ“น VHS_SaveVideo - VHS video save node
  • ๐ŸŽต VHS_SaveAudio - VHS audio save node

๐ŸŽฏ Method 2: Manual Output Marking

Usually used for multiple outputs Use $output.var_name in any node title to mark output:

  • Set node title to: $output.result
  • The system will use this node's output as the tool's return value

๐Ÿ“„ Tool Description Configuration (Optional)

You can add a node titled MCP in the workflow to provide a tool description:

  1. Add a String (Multiline) or similar text node (must have a single string property, and the node field should be one of: value, text, string)
  2. Set the node title to: MCP
  3. Enter a detailed tool description in the value field

โš ๏ธ Important Notes

  1. ๐Ÿ”’ Parameter Validation: Optional parameters (without !) must have default values set in the node
  2. ๐Ÿ”— Node Connections: Fields already connected to other nodes will not be parsed as parameters
  3. ๐Ÿท๏ธ Tool Naming: Exported file name will be used as the tool name, use meaningful English names
  4. ๐Ÿ“‹ Detailed Descriptions: Provide detailed parameter descriptions for better user experience
  5. ๐ŸŽฏ Export Format: Must export as API format, do not export as UI format

๐Ÿ’ฌ Community

Scan the QR codes below to join our communities for latest updates and technical support:

Discord Community WeChat Group
Discord Community WeChat Group

๐Ÿค How to Contribute

We welcome all forms of contribution! Whether you're a developer, designer, or user, you can participate in the project in the following ways:

๐Ÿ› Report Issues

  • ๐Ÿ“‹ Submit bug reports on the Issues page
  • ๐Ÿ” Please search for similar issues before submitting
  • ๐Ÿ“ Describe the reproduction steps and environment in detail

๐Ÿ’ก Feature Suggestions

  • ๐Ÿš€ Submit feature requests in Issues
  • ๐Ÿ’ญ Describe the feature you want and its use case
  • ๐ŸŽฏ Explain how it improves user experience

๐Ÿ”ง Code Contributions

๐Ÿ“‹ Contribution Process

  1. ๐Ÿด Fork this repo to your GitHub account
  2. ๐ŸŒฟ Create a feature branch: git checkout -b feature/your-feature-name
  3. ๐Ÿ’ป Develop and add corresponding tests
  4. ๐Ÿ“ Commit changes: git commit -m "feat: add your feature"
  5. ๐Ÿ“ค Push to your repo: git push origin feature/your-feature-name
  6. ๐Ÿ”„ Create a Pull Request to the main repo

๐ŸŽจ Code Style

  • ๐Ÿ Python code follows PEP 8 style guide
  • ๐Ÿ“– Add appropriate documentation and comments for new features

๐Ÿงฉ Contribute Workflows

  • ๐Ÿ“ฆ Share your ComfyUI workflows with the community
  • ๐Ÿ› ๏ธ Submit tested workflow files
  • ๐Ÿ“š Add usage instructions and examples for workflows

๐Ÿ™ Acknowledgements

โค๏ธ Sincere thanks to the following organizations, projects, and teams for supporting the development and implementation of this project.

License

This project is released under the MIT License (LICENSE, SPDX-License-identifier: MIT).

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pixelle-0.1.1.tar.gz (6.0 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pixelle-0.1.1-py3-none-any.whl (6.1 MB view details)

Uploaded Python 3

File details

Details for the file pixelle-0.1.1.tar.gz.

File metadata

  • Download URL: pixelle-0.1.1.tar.gz
  • Upload date:
  • Size: 6.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.6.4

File hashes

Hashes for pixelle-0.1.1.tar.gz
Algorithm Hash digest
SHA256 a017d95449c718802b5567534389c36bf64b73e778b7303f9a23382d00cfc537
MD5 177a2feae6f28c892cb31652ace63da4
BLAKE2b-256 3b1c0d012d8155da3b50606ae48736cb105467efa312e1f58ca47bed92982c57

See more details on using hashes here.

File details

Details for the file pixelle-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: pixelle-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 6.1 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.6.4

File hashes

Hashes for pixelle-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 fa633096849c62a4b9867508286e620ff9e2247f3fe8a6ff0122f73796854d6f
MD5 f59cd99977536805433ad1deda14a70f
BLAKE2b-256 92a2e9206fb739366aef058d3d41d18975c76eeece3d9994fbe0c3623fb11fb6

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page