nano-banana-mcp
Deploys as a Cloudflare Worker and uses Workers KV to store generated images with time-limited public URLs.
Provides image generation and editing using Google's Gemini 2.5 Flash Image model.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@nano-banana-mcpGenerate an image of a sunset over mountains"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
nano-banana-mcp
v1.1.0 — adds optional support for Nano Banana Pro (Gemini 3 Pro Image) alongside the default Gemini 2.5 Flash Image model. See Model selection below.
A Cloudflare Worker exposing Google's Gemini 2.5 Flash Image model ("nano banana") as an MCP tool, for use as a custom connector in Claude.ai.
Exposes two tools: generate_image(prompt, aspect_ratio?, count?, seed?, temperature?, model?, resolution?) and edit_image(image, instruction, aspect_ratio?, seed?, temperature?, model?, resolution?).
Connector URL format (once deployed):
https://nano-banana-mcp.<subdomain>.workers.dev/<MCP_AUTH_TOKEN>/mcpSee DEPLOY.md for first-time setup.
Parameters
generate_image
Param | Type | Required | Default | Notes |
| string | yes | — | Description of the image. Style direction belongs here. |
| enum | no |
| One of |
| integer | no |
| 1–4. Each variation is a separate billed generation with its own URL. |
| integer | no | random, always reported | int32. Same prompt + ratio + temperature + seed reproduces the same image. With |
| number | no | model default | 0–2. Lower is more literal, higher more inventive. |
| enum | no |
|
|
| enum | no |
|
|
num_images is still accepted as a deprecated alias for count, so clients holding a cached copy of the old tool definition keep working.
edit_image
Param | Type | Required | Default | Notes |
| string | yes | — | Public HTTPS URL, or the 8-character id from a previous result. |
| string | yes | — | The edit to perform, e.g. "make it dusk". |
| enum | no | source framing | Same values as above. Omit to leave the framing alone. |
| integer | no | random, always reported | int32, as above. |
| number | no | model default | 0–2, as above. |
| enum | no |
|
|
| enum | no |
|
|
An invalid enum value or an out-of-range number comes back as an isError result naming the valid values, without spending a Gemini call.
Related MCP server: Cloudflare Image MCP
Model selection
Both tools accept an optional model parameter:
| Gemini model | Approx. cost | Notes |
|
| ~$0.039/image | Same model and cost as before this option existed. Any call that omits |
|
| ~$0.134/image at 1K/2K, ~$0.24/image at 4K | ~3.4x the cost of |
resolution (1k / 2k / 4k, default 1k) only applies to pro, sent as generationConfig.imageConfig.imageSize. If resolution is passed while model is normal (or left at its default), it's ignored and the settings line notes resolution dropped (normal model) rather than silently discarding it.
How the parameters reach Gemini
All of them go into generationConfig on the generateContent body — the aspect ratio specifically into generationConfig.imageConfig.aspectRatio:
{
"contents": [...],
"generationConfig": {
"temperature": 0.9,
"seed": 4821,
"responseModalities": ["TEXT", "IMAGE"],
"imageConfig": { "aspectRatio": "16:9" }
}
}temperature is omitted from the body entirely when not supplied, so the model's own default applies. seed never is — see below. Earlier versions of this server instead appended (aspect ratio 16:9) to the prompt text, which left the ratio a suggestion the model was free to ignore — that is why 16:9 requests kept coming back square. count is handled as sequential generateContent calls rather than one call asking for N images, which the model answers inconsistently.
Settings echo
Every image comes back as its own text content block: the URL on the first line, then the settings it was actually produced under, so the chat side can report them and reuse them in a follow-up request.
https://nano-banana-mcp.<subdomain>.workers.dev/<token>/img/8be62d09
variant 2/3 · 1376×768 (16:9) · seed 101 · temp 0.9 · model normalOn pro, the line also names the resolution and its approximate cost, e.g. model pro · 2k · ~$0.134.
The seed is always present. A caller who omits seed gets one generated by the Worker, which is sent to Gemini and reported back. Letting the model pick its own unreported seed would make the image impossible to reproduce, so refinement — "same image but at dusk" — would be impossible too. temperature reads temp default when it wasn't supplied, since there is no single number to name.
1376×768 (16:9) · seed 868960483 · temp defaultThe resolution is read from the returned image's own header rather than assumed from the requested ratio, so if the model ignores the aspect ratio the line says so:
1024×1024 (16:9) ⚠ model returned a different aspect ratio than the requested 16:9When no aspect_ratio was requested — the usual case for edit_image — the ratio in the line is inferred from the returned pixels instead, and never carries the mismatch warning.
If a variation fails partway through a count > 1 batch, the images already generated are still returned, with a trailing note naming the variation that failed and why.
Image URLs
Since Claude.ai doesn't render raw base64 image blocks from custom MCP connectors, generate_image also stores each generated image in a Workers KV namespace (IMAGES) and returns a public URL alongside the base64 content:
https://nano-banana-mcp.<subdomain>.workers.dev/<MCP_AUTH_TOKEN>/img/<id>Each image is available at its URL for 24 hours, after which it expires from KV and the route returns a 404.
The URL is auth-gated the same way as
/mcp: the token must matchMCP_AUTH_TOKEN.
Rendering
Tool results are plain MCP content blocks — one text block per image (URL + settings) followed by the raw image blocks — and the chat side decides how to display them. The server declares no resources capability and no MCP Apps extension, so no host-rendered widget is involved.
Editing
edit_image edits an existing image with a natural-language instruction, using the same Gemini 2.5 Flash Image model. The source image argument accepts either:
a public HTTPS URL to an image, or
the 8-character id from a previous
generate_image/edit_imageresult (the trailing segment of its returned/img/<id>URL).
If aspect_ratio is omitted, no imageConfig is sent at all and the source image's framing is preserved. Source images are capped at ~6 MB. Like generate_image, results are stored in KV and returned as URL(s) + raw image content, so edited images can themselves be passed back into edit_image by id for further edits.
This server cannot be deployed
Maintenance
Related MCP Connectors
Cloudflare Workers MCP server: ai-model-router
Cloudflare Workers MCP server: ai-gateway
Cloudflare Workers MCP server: ai-prompt-optimizer
Cloudflare Workers MCP server: claude-skill-validator
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceA remote MCP connector deployed as a Cloudflare Worker that gives Claude access to Google Gemini models, enabling image generation/editing, model auditing, and large context digesting.89 npmMIT
- FlicenseNot gradedqualityBmaintenanceImage generation MCP server running on Cloudflare Workers, supporting multiple models like FLUX and SDXL with OpenAI-compatible endpoints.-
- FlicenseNot gradedqualityBmaintenanceA remote MCP server that exposes Gemini image generation/editing as a custom connector for Claude, enabling image creation and editing from any chat interface.-
- AlicenseNot gradedqualityBmaintenanceProvides image generation tools powered by OpenRouter, running on Cloudflare Workers.26 npmMIT