Glama
Chat
MCP
Gateway
Models
Pricing
Community
Sign In
Chat
MCP
Gateway
Models
Pricing
Community
Sign In
Glama
MCP
Servers
ComfyUI MCP Server
Claim
by
jonpojonpo
GitHub
Note Taking
Knowledge & Memory
Python
MIT License
2
Apple
Reddit
Discord
Overview
Inspect
New
Schema
Related Servers
Reviews
Score
Need Help?
View Source Code
Report Issue
comfy-ui-mcp-server
src
comfy_ui_mcp_server
src/comfy_ui_mcp_server/__init__.py
src/comfy_ui_mcp_server/server.py
#
__init__
.
py
import
asyncio
from
.
server
import
main
as
server_main
def
main
():
"""
Entry point for the package.
"""
try
:
asyncio
.
run
(
server_main
())
except
Exception
as
e
:
print
(
f
"
Error running server: {e}
"
)
raise