Home / MCP / Comfy UI MCP Server
Provides a local note store, a summarize-notes prompt, and add-note tool for comfyUI interactions.
Configuration
View docs{
"mcpServers": {
"comfy_ui_mcp": {
"command": "uvx",
"args": [
"comfy-ui-mcp-server"
]
}
}
}You run a local MCP server that exposes a simple note storage system and a small set of prompts and tools to interact with your notes. This server is designed to connect to your comfyUI instance, offering quick actions to create notes and generate summaries across all stored notes. It helps you manage notes and produce consolidated prompts from your notes for your interactions with comfyUI.
Connect your MCP client to the comfy-ui-mcp-server running locally. You can add new notes using the add-note tool, and you can generate summaries of all stored notes with summarize-notes. The server notifies connected clients when resources (notes) change, so your UI stays in sync as you add or update content.
Prerequisites: ensure you have the MCP runtime available on your system and that you can run stdio MCP servers with the provided commands.
Install and run the server using the published configuration or the development configuration shown below.
{"mcpServers": {
"comfy-ui-mcp-server": {
"command": "uvx",
"args": [
"comfy-ui-mcp-server"
]
}
}}Note: You have two valid runtime examples to start the server locally. Use the published runtime to start a standard, deploy-ready instance, or use the development runtime for local testing with a specific directory path if you are actively developing the server.
Development runtime example starts the server with a specific directory and run command.
{"mcpServers": {
"comfy-ui-mcp-server": {
"command": "uv",
"args": [
"--directory",
"E:\\Claude\\comfy-ui-mcp-server",
"run",
"comfy-ui-mcp-server"
]
}
}}Adds a new note to the server with required arguments: name and content. Updates the server state and notifies connected clients of resource changes.
Creates summaries of all stored notes. Optional style argument controls detail level (brief or detailed). Generates a prompt combining all current notes with the chosen style.