- Home
- MCP servers
- Jonpojonpo Comfy-UI
Jonpojonpo Comfy-UI
- typescript
0
GitHub Stars
typescript
Language
7 months ago
First Indexed
3 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"mcp-mirror-jonpojonpo_comfy-ui-mcp-server": {
"command": "uv",
"args": [
"--directory",
"E:\\Claude\\comfy-ui-mcp-server",
"run",
"comfy-ui-mcp-server"
]
}
}
}This MCP server lets you connect to a local comfyUI instance, manage simple notes, and generate prompts that summarize your notes. It exposes a small set of resources and one prompt, plus a tool to add notes, making it easy to prototype note-based workflows with an MCP client.
How to use
You interact with the server through an MCP client to manage notes and run prompts. The server exposes a note storage resource that you can access with a custom note:// URI scheme, and it provides a summarize-notes prompt that creates summaries of all stored notes. You can add notes using the add-note tool, which updates the server state and notifies connected clients of resource changes.
How to install
Prerequisites you need before starting are installed tooling for MCP servers and access to the Clover/MCP runtime used by your client. If you are using Claude Desktop, you will configure your MCP server in the dedicated client settings as shown in your environment.
Install Claude Desktop and ensure you have the MCP runtime configured in your client.
Additional setup details
Choose your startup method based on whether you run a development instance or a published one.
"mcpServers": {
"comfy-ui-mcp-server": {
"command": "uv",
"args": [
"--directory",
"E:\\Claude\\comfy-ui-mcp-server",
"run",
"comfy-ui-mcp-server"
]
}
}
Notes on running in different environments
If you prefer a published configuration that runs as a standalone background process, use the published startup configuration.
"mcpServers": {
"comfy-ui-mcp-server": {
"command": "uvx",
"args": [
"comfy-ui-mcp-server"
]
}
}
Available tools
add-note
Adds a new note to the server. Requires a name and content as strings. Updates the server state and notifies connected clients of resource changes.
summarize-notes
Creates summaries of all stored notes. Accepts an optional style argument to control detail level (brief or detailed) and combines current notes into a single prompt.