nanobanana-mcp-server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| LOG_LEVEL | No | Log level (DEBUG, INFO, WARNING, ERROR) | INFO |
| LOG_FORMAT | No | Log format (standard, json, detailed) | standard |
| GEMINI_API_KEY | Yes | Your Google Gemini API key (required) | |
| IMAGE_OUTPUT_DIR | No | Path to image directory | ~/nanobanana-images |
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": true
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {
"tasks": {
"list": {},
"cancel": {},
"requests": {
"tools": {
"call": {}
},
"prompts": {
"get": {}
},
"resources": {
"read": {}
}
}
}
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| generate_imageB | Generate new images or edit existing images using natural language instructions. Supports multiple input modes:
Automatically detects mode based on parameters or can be explicitly controlled. Input images are read from the local filesystem to avoid massive token usage. Returns both MCP image content blocks and structured JSON with metadata. |
| upload_fileA | Upload a local file through the Gemini Files API and return its URI & metadata. Useful when the image is larger than 20MB or reused across prompts. |
| show_output_statsA | Show statistics about the output directory and recently generated images. |
| maintenanceB | Perform maintenance operations following workflows.md patterns. Available operations:
|
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
| photorealistic_shot | Generate a prompt for high-quality photorealistic images. |
| logo_text | Generate a prompt for logo creation with accurate text rendering. |
| product_shot | Generate a prompt for studio product photography. |
| sticker_flat | Generate a prompt for flat/kawaii style stickers. |
| iterative_edit_instruction | Generate an instruction for precise image editing. |
| composition_and_style_transfer | Generate an instruction for style transfer and composition blending. |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| prompt_templates_catalog | A compact catalog of prompt templates (same schemas as the @mcp.prompt items). |
| list_operations | List all tracked operations. Returns: Dict with list of operations and summary statistics |
TDQS
Scored across 4 tools
Each tool has a clearly distinct purpose: generate_image creates/edits images, maintenance handles cleanup, show_output_stats displays statistics, and upload_file uploads files. No overlap in functionality.
Names use mixed patterns: verb_noun (generate_image, upload_file), verb_noun_noun (show_output_stats), and a noun (maintenance). While readable, the inconsistency could cause confusion.
4 tools is appropriate for an image generation server, covering core operations. It could benefit from additional tools like delete_image, but the current count is reasonable.
The set covers generation, editing, upload, and maintenance, but lacks explicit listing or deletion of images, and show_output_stats is somewhat superficial. Notable gaps exist.