Comfyui Animatool
C

Comfyui Animatool

ComfyUI-AnimaTool is a tool that enables AI Agents to directly generate 2D anime - style images and display them natively in the chat window. It connects ComfyUI through the MCP protocol or HTTP API and supports functions such as structured prompts, multiple aspect ratios, batch generation, and LoRA loading.
2.5 points
6.7K

What is ComfyUI-AnimaTool?

ComfyUI-AnimaTool is a Model Context Protocol (MCP) server that acts as a bridge between AI chat assistants (Agents) and the professional AI painting tool ComfyUI. Simply put, it allows you to directly input text descriptions in chat interfaces such as Cursor and Claude to generate high-quality 2D anime-style images, which will be directly displayed in the conversation without any complex operations or switching to other software.

How to use ComfyUI-AnimaTool?

The usage process is very simple: 1. Ensure that ComfyUI (an AI painting software) is running on your computer. 2. Configure the ComfyUI-AnimaTool MCP server in your AI assistant (such as Cursor). 3. Directly tell the AI what kind of image you want in the chat, and the AI will call this tool to generate it for you. The whole process is as natural as asking an AI assistant to draw a picture for you.

Applicable scenarios

This tool is very suitable for: - **Content creators**: Quickly generate illustrations for articles and stories. - **Game/anime enthusiasts**: Generate images for their favorite characters or original characters. - **Product/UI designers**: Quickly generate concept maps or mood board materials. - **Anyone who wants to use AI painting but finds SD/ComfyUI too complicated**: Can be completed through natural language dialogue.

Main features

Native MCP integration, images displayed directly
The generated images will be directly embedded in the chat client windows that support MCP, such as Cursor and Claude, in native format. There is no need to manually save or view external links, providing a smooth experience.
Automatic construction of structured prompts
The tool will automatically splice your natural language descriptions into effective prompts according to the best practice format of the Anima model (for example, the artist must be preceded by @, and the safety label must be specified). You don't need to learn complex prompt syntax.
Presets for multiple aspect ratios
It supports a total of 14 commonly used aspect ratios from ultra-wide screen 21:9 to ultra-vertical screen 9:21. You just need to mention the ratio name (such as 'vertical screen 9:16'), and the tool will automatically calculate the optimal resolution.
Regeneration and history records
It supports viewing previous generation records and performing 'reroll' based on any historical image. Most settings can be retained, and only some elements can be modified (such as changing the artist).
Batch generation (ten consecutive draws)
You can generate multiple images at once by setting the `repeat` (multiple independent tasks) or `batch_size` (multiple images within a single task) parameters, improving efficiency.
LoRA model support
You can load custom LoRA models (a type of small style/character model) to customize the generated painting style or specific characters, making your creations more personalized.
Simplified remote connection
A new `uvx` installation-free mode is added. You can connect to the remote or cloud ComfyUI service with just one line of configuration, without the need to deploy a complex AI painting environment locally.
Advantages
**Extremely low usage threshold**: There is no need to understand ComfyUI nodes or SD WebUI parameters. Images can be generated through dialogue.
**Seamless workflow integration**: Image generation is directly embedded in your coding or writing chat environment, eliminating the need to switch applications.
**Adherence to best practices**: The tool has built-in prompt specifications for the Anima model and can automatically generate high-quality and effective descriptions.
**Flexible connection methods**: It supports multiple deployment scenarios such as local ComfyUI, remote servers, and Docker.
**Powerful scalability**: It supports LoRA and can be combined with other tools (such as SillyTavern) to form a richer ecosystem.
Limitations
**Dependence on backend services**: There must be a running ComfyUI instance, and the Anima model must be correctly configured.
**Focus on 2D anime style**: It is mainly optimized for the Anima model, and the effect may not be good when generating realistic or other styles.
**Requires certain hardware**: Running ComfyUI and the Anima model requires a GPU with sufficient video memory (8GB or more is recommended).
**Parameters are not fully controllable**: For simplicity, some underlying parameters (such as the sampler) are preset, which may make advanced users feel less free.

How to use

Prepare the backend: Install and run ComfyUI
Install ComfyUI on your computer or server, and download the Anima model files (including UNET, CLIP, VAE) from HuggingFace and place them in the correct directory. Ensure that ComfyUI can be started and accessed normally (default http://127.0.0.1:8188).
Install the ComfyUI-AnimaTool plugin
In the `custom_nodes` directory of ComfyUI, search and install through the ComfyUI Manager, or manually clone the code of this repository and install the dependencies.
Configure your AI client (taking Cursor as an example)
Create or edit the `.cursor/mcp.json` file in the root directory of the Cursor project, and add the configuration of the anima-tool server, pointing to the MCP server script of ComfyUI-AnimaTool.
Restart the client and start using
Restart Cursor, and confirm in the settings that the MCP server `anima-tool` has been successfully loaded (displayed in green). After that, you can directly ask the AI assistant to generate images in the chat.

Usage examples

Generate a character portrait for a novel character
A novel author is creating a story in Cursor and needs to generate an image of the female protagonist 'Ling Yue'. She describes the character's appearance features and the desired atmosphere to the AI assistant.
Quickly generate an illustration for an article
A blogger is writing a technology article about 'future cities' and needs a header image. Instead of searching on image library websites, he directly asks the AI to generate a unique image that matches the article's theme.
Try different painting style combinations
An anime enthusiast wants to see what his favorite character would look like if painted in different artists' styles. He uses the 'reroll' function to quickly switch artists.

Frequently Asked Questions

Do I have to install ComfyUI locally?
Why doesn't the generated image match my description?
What should I do if the MCP server fails to load after configuration in Cursor?
How can I generate multiple images at once?
Where are the generated images saved?
Does it support generating real - life style or other non - 2D anime images?

Related resources

Project Wiki and detailed guide
It includes a detailed prompt writing guide, a complete installation tutorial, API documentation, and advanced tips.
Cursor Skill guide
A must - read for Cursor/Windsurf users! Use the content of this file as an Agent Skill to teach the AI how to write high - quality Anima prompts.
Anima model download (HuggingFace)
Download the Anima model files (UNET, CLIP, VAE) necessary for running this tool.
Supporting project: SillyTavern MCP Client
If you use SillyTavern, this is the supporting MCP client that supports image streaming.
Supporting project: LoRA training toolkit
Want to train your own painting style or character LoRA model? Use this toolkit to easily train a LoRA compatible with Anima.
Cherry Studio preview version (fix image display)
If you use Cherry Studio as an MCP client, you need to install this preview version to correctly display the images returned by MCP and solve the卡顿 problem.

Installation

Copy the following command to your Client for configuration
{
  "mcpServers": {
    "anima-tool": {
      "command": "uvx",
      "args": ["--from", "comfyui-animatool", "animatool-mcp"],
      "env": {
        "COMFYUI_URL": "http://127.0.0.1:8188",
        "ANIMATOOL_CHECK_MODELS": "false"
      }
    }
  }
}

{
  "mcpServers": {
    "anima-tool": {
      "command": "<PATH_TO_PYTHON>",
      "args": ["<PATH_TO>/ComfyUI-AnimaTool/servers/mcp_server.py"]
    }
  }
}

{
  "mcpServers": {
    "anima-tool": {
      "command": "C:\\ComfyUI\\.venv\\Scripts\\python.exe",
      "args": ["C:\\ComfyUI\\custom_nodes\\ComfyUI-AnimaTool\\servers\\mcp_server.py"]
    }
  }
}

{
  "mcpServers": {
    "anima-tool": {
      "command": "C:\\ComfyUI\\.venv\\Scripts\\python.exe",
      "args": ["C:\\ComfyUI\\custom_nodes\\ComfyUI-AnimaTool\\servers\\mcp_server.py"],
      "env": {
        "COMFYUI_URL": "http://127.0.0.1:8188",
        "COMFYUI_MODELS_DIR": "C:\\ComfyUI\\models"
      }
    }
  }
}
Note: Your key is sensitive information, do not share it with anyone.

Alternatives

A
Assistant Ui
assistant - ui is an open - source TypeScript/React library for quickly building production - grade AI chat interfaces, providing composable UI components, streaming responses, accessibility, etc., and supporting multiple AI backends and models.
TypeScript
6.6K
5 points
N
Next Devtools MCP
The Next.js development tools MCP server provides Next.js development tools and utilities for AI programming assistants such as Claude and Cursor, including runtime diagnostics, development automation, and document access functions.
TypeScript
10.8K
5 points
P
Praisonai
PraisonAI is a production-ready multi-AI agent framework with self-reflection capabilities, designed to create AI agents to automate the solution of various problems from simple tasks to complex challenges. It simplifies the construction and management of multi-agent LLM systems by integrating PraisonAI agents, AG2, and CrewAI into a low-code solution, emphasizing simplicity, customization, and effective human-machine collaboration.
Python
10.4K
5 points
B
Blueprint MCP
Blueprint MCP is a chart generation tool based on the Arcade ecosystem. It uses technologies such as Nano Banana Pro to automatically generate visual charts such as architecture diagrams and flowcharts by analyzing codebases and system architectures, helping developers understand complex systems.
Python
10.7K
4 points
K
Klavis
Klavis AI is an open-source project that provides a simple and easy-to-use MCP (Model Context Protocol) service on Slack, Discord, and Web platforms. It includes various functions such as report generation, YouTube tools, and document conversion, supporting non-technical users and developers to use AI workflows.
TypeScript
20.7K
5 points
D
Devtools Debugger MCP
The Node.js Debugger MCP server provides complete debugging capabilities based on the Chrome DevTools protocol, including breakpoint setting, stepping execution, variable inspection, and expression evaluation.
TypeScript
9.2K
4 points
M
Mcpjungle
MCPJungle is a self-hosted MCP gateway used to centrally manage and proxy multiple MCP servers, providing a unified tool access interface for AI agents.
Go
0
4.5 points
N
Nexus
Nexus is an AI tool aggregation gateway that supports connecting multiple MCP servers and LLM providers, providing tool search, execution, and model routing functions through a unified endpoint, and supporting security authentication and rate limiting.
Rust
0
4 points
N
Notion Api MCP
Certified
A Python-based MCP Server that provides advanced to-do list management and content organization functions through the Notion API, enabling seamless integration between AI models and Notion.
Python
20.4K
4.5 points
G
Gitlab MCP Server
Certified
The GitLab MCP server is a project based on the Model Context Protocol that provides a comprehensive toolset for interacting with GitLab accounts, including code review, merge request management, CI/CD configuration, and other functions.
TypeScript
24.6K
4.3 points
M
Markdownify MCP
Markdownify is a multi-functional file conversion service that supports converting multiple formats such as PDFs, images, audio, and web page content into Markdown format.
TypeScript
35.5K
5 points
D
Duckduckgo MCP Server
Certified
The DuckDuckGo Search MCP Server provides web search and content scraping services for LLMs such as Claude.
Python
73.1K
4.3 points
U
Unity
Certified
UnityMCP is a Unity editor plugin that implements the Model Context Protocol (MCP), providing seamless integration between Unity and AI assistants, including real - time state monitoring, remote command execution, and log functions.
C#
31.2K
5 points
F
Figma Context MCP
Framelink Figma MCP Server is a server that provides access to Figma design data for AI programming tools (such as Cursor). By simplifying the Figma API response, it helps AI more accurately achieve one - click conversion from design to code.
TypeScript
65.6K
4.5 points
G
Gmail MCP Server
A Gmail automatic authentication MCP server designed for Claude Desktop, supporting Gmail management through natural language interaction, including complete functions such as sending emails, label management, and batch operations.
TypeScript
22.1K
4.5 points
M
Minimax MCP Server
The MiniMax Model Context Protocol (MCP) is an official server that supports interaction with powerful text-to-speech, video/image generation APIs, and is suitable for various client tools such as Claude Desktop and Cursor.
Python
48.0K
4.8 points
AIBase
Zhiqi Future, Your AI Solution Think Tank
© 2026AIBase