Skip to main content
Glama

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
COMFYUI_API_BASENoThe base URL of the local ComfyUI instance.http://127.0.0.1:8188
COMFYUI_WORKFLOWS_DIRNoOptional path to a custom workflows directory.

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Features and capabilities supported by this server

Protocol revision2025-11-25

CapabilityDetails
tools
{
  "listChanged": false
}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
generate_image_from_textA
Generates an image using ComfyUI based on the provided prompt and optional parameters.

Args:
    prompt: The positive text prompt (It must be in English).
    workflow_name: The name of the workflow file (without .json) from the 'workflows' directory to use.
                If None, uses the default workflow ('t2image_bizyair_flux').
    width: The desired width of the image (default: 1024).
    height: The desired height of the image (default: 1024).
Returns:
    A URL to view the generated image.
generate_image_from_imageA
Generates an image using ComfyUI based on an input image (URL, local path, or bytes), prompt, and optional parameters.

Args:
    prompt: The positive text prompt (It must be in English).
    workflow_name: The name of the I2I workflow file (without .json) to use (default: 'I2Image_bizyair_flux').
    image_path_or_url: The URL or local file path or image data as bytes of the input image.
    denoise: Denoising strength (0.0 to 1.0). Controls how much the original image influences the result. to use (default: '1.0')
    seed: Optional random seed for reproducibility.
Returns:
    A URL to view the generated image or an error message.

Prompts

Interactive templates invoked by user choice

NameDescription
Generate Image with ComfyUI Provides a starting point for generating an image using the generate_image tool.

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A3.8/5.0

Scored across 2 tools

Disambiguation5/5

The two tools have clearly distinct purposes: one takes an input image for image-to-image generation, the other takes a text prompt for text-to-image generation. An agent can easily select the appropriate tool based on whether they have a reference image.

Naming Consistency5/5

Both tool names follow a consistent 'generate_image_from_<source>' pattern (image vs text). The naming is uniform and predictable, making it easy for an agent to infer the function.

Tool Count4/5

With only 2 tools, the server is very focused but slightly sparse for a general ComfyUI interface. It covers the two fundamental generation modes, which is reasonable for a minimal setup, though a few more tools (e.g., upscale or inpaint) would be expected.

Completeness3/5

The server covers the two core ComfyUI workflows (text-to-image and image-to-image), but lacks common operations like upscaling, inpainting, or workflow management. There are notable gaps that agents cannot work around.

Maintenance

ActivityInactive
ResponsivenessNo issues