Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here
nano-banana-2 logo

nano-banana-2

nano-banana-2-plugins

OtherClaude Codeby daveremy

Summary

Image generation with Google Gemini Nano Banana 2 via MCP

Install to Claude Code

/plugin install nano-banana-2@nano-banana-2-plugins

Run in Claude Code. Add the marketplace first with /plugin marketplace add daveremy/nano-banana-2-mcp if you haven't already.

README.md

nano-banana-2-mcp

MCP server for Google Gemini image generation, upgraded for Nano Banana 2 (gemini-3.1-flash-image-preview).

A fork/rewrite of ConechoAI/Nano-Banana-MCP with:

  • Nano Banana 2 model — better text rendering, thinking modes, resolution control
  • Resolution control — 1K, 2K, 4K
  • Aspect ratio — any ratio the API supports (1:1, 16:9, 9:16, 4:3, etc.)
  • Thinking modes — minimal or high
  • Multiple images — generate 1–4 variations per call
  • File-path-only mode — no inline base64, fixes context window overflow in Claude Code
  • Security hardening — path validation, file size caps, no plaintext API key storage

Setup

1. Get a Gemini API key

Get one from Google AI Studio.

2. Install

Via Claude Code plugin (recommended):

claude plugin add nano-banana-2-mcp

Or manually via npx — add to your Claude Code MCP settings:

{
  "mcpServers": {
    "nano-banana-2": {
      "command": "npx",
      "args": ["-y", "nano-banana-2-mcp"],
      "env": {
        "GEMINI_API_KEY": "your-api-key-here"
      }
    }
  }
}

Or from source for development:

git clone https://github.com/daveremy/nano-banana-2-mcp.git
cd nano-banana-2-mcp
npm install
npm run build

Then point your MCP config at dist/index.js:

{
  "mcpServers": {
    "nano-banana-2": {
      "command": "node",
      "args": ["/path/to/nano-banana-2-mcp/dist/index.js"],
      "env": {
        "GEMINI_API_KEY": "your-api-key-here"
      }
    }
  }
}

3. Restart Claude Code

The tools will be available after restart.

Tools

generate_image

Generate a new image from a text prompt.

| Parameter | Type | Default | Description | |-----------|------|---------|-------------| | prompt | string | (required) | Text prompt for the image | | aspectRatio | string | "1:1" | Aspect ratio (e.g. "16:9", "9:16") | | resolution | string | "1K" | 1K, 2K, or 4K | | thinking | string | "minimal" | minimal or high | | numberOfImages | number | 1 | 1–4 | | returnInlineImage | boolean | true | If false, return only file path |

edit_image

Edit an existing image file.

Same parameters as generate_image, plus:

| Parameter | Type | Description | |-----------|------|-------------| | imagePath | string | (required) Path to the image to edit | | referenceImages | string[] | Optional additional reference images |

continue_editing

Continue editing the last generated/edited image. Same parameters as edit_image minus imagePath (uses the last image automatically).

get_configuration_status

Check API key, active model, and settings.

get_last_image_info

Get path and size of the last generated image.

Environment Variables

| Variable | Default | Description | |----------|---------|-------------| | GEMINI_API_KEY | (required) | Google Gemini API key | | NANO_BANANA_MODEL | gemini-3.1-flash-image-preview | Model ID override | | NANO_BANANA_OUTPUT_DIR | ./generated_imgs | Image save directory | | NANO_BANANA_INLINE_IMAGE | true | Default for returnInlineImage |

Capability Gating

The server auto-detects model capabilities:

  • Image models (-image, -image-preview): get imageConfig (resolution, aspect ratio)
  • Gemini 3.x image models: also get thinkingConfig
  • Other models: basic config only

This means you can use NANO_BANANA_MODEL=gemini-2.5-flash-image and it will send imageConfig but skip thinkingConfig.

Claude Code Plugin

This repo includes a Claude Code plugin with a generate-image skill that provides best-practice prompting guidance. Install via claude plugin add nano-banana-2-mcp or add the repo path to your Claude Code plugins config.

Contributing

See CONTRIBUTING.md for development setup, testing, and release process.

Attribution

Based on ConechoAI/Nano-Banana-MCP (MIT License).

License

MIT

Related plugins

Browse all →