image-generate-mcp-remote
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| LOG_LEVEL | No | Logging level | INFO |
| IMAGE_OUTPUT_DIR | No | Directory for saving generated images | storage/images |
| IMG_GEN_GPT_IMAGE_2_OFFICIAL_PRESET | No | Active preset for gpt_image_2_official | openai_gpt_image_2 |
| IMG_GEN_GPT_IMAGE_2_OFFICIAL_API_KEY | No | API Key for gpt_image_2_official tool | |
| IMG_GEN_NANO_BANANA_2_OFFICIAL_PRESET | No | Active preset for nano_banana_2_official | google_nano_banana |
| IMG_GEN_NANO_BANANA_2_OFFICIAL_API_KEY | No | API Key for nano_banana_2_official tool |
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
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| list_image_tools_catalog_toolC | List image tool defaults and effective config |
| list_image_presets_toolB | List registered presets with bound tool, base URL, and default model |
| gpt_image_2_officialA | Generate or edit images via the OpenAI Images compatible gateway. The active startup preset owns provider, model, timeout, retry, and field dispatch behavior. You may override preset and api_key per call; if preset is supplied, api_key is required in the same request. Without overrides, the configured preset and API key are used. Select image_size plus aspect_ratio from the catalog enums to derive the provider size preset. Call list_image_tools_catalog first when you need the current supported size presets. |
| nano_banana_2_officialC | Generate or edit images via the Gemini compatible gateway. The active startup preset owns provider, model, timeout, retry, and field dispatch behavior. You may override preset and api_key per call; if preset is supplied, api_key is required in the same request. Without overrides, the configured preset and API key are used. Use image_size plus aspect_ratio from the shared catalog enums. Invalid size errors include the supported preset list. |
| gpt_image_2_temporaryB | Temporary OpenAI Images-compatible exploration tool. Allows per-call api_key, base_url, model, and timeout, but sends only conservative fields by default. |
| nano_banana_2_temporaryC | Temporary Gemini generateContent-compatible exploration tool. Allows per-call api_key, base_url, model, and timeout for unknown providers. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 6 tools
The two list tools are clearly distinct, and generation tools are separated by provider and official/temporary mode. However, the official/temporary pairs for each provider still overlap in their core generate/edit action, so an agent may need to read descriptions carefully to choose correctly.
Tool names split into list_*_tool and *_official/*_temporary patterns, so there is no uniform verb_noun convention across the server. Within each subset the names are consistent and readable, but the mixed structure prevents a higher score.
Six tools is well-scoped for an image generation server: two config/discovery tools and four generation variants covering two providers and two operating modes. Each tool fills a clear role without feeling redundant.
The tool surface covers configuration discovery and both generate/edit workflows via both providers, including a temporary exploration path for unknown providers. Presets are clearly externally managed, so listing them is sufficient and there are no obvious dead ends.