nb-mcp
Allows generating and editing images using Google's Gemini nano banana (Gemini 2.5 Flash Image) model, providing tools for text-to-image generation and image editing/restyling.
Click on "Install 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., "@nb-mcpGenerate a 16:9 image of a cyberpunk street market"
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.
π nb-mcp β image generation MCP for Claude
A remote MCP server running on Cloudflare Workers that lets Claude generate images. Add it once as a custom connector and use it in Claude Design, claude.ai, and Claude Desktop.
Free by default β uses Cloudflare Workers AI (Flux), no API key, no billing. Perfect for testing.
Optional nano banana β switch to Google Gemini 2.5 Flash Image when you want (needs a key + billing).
One tool: generate_image (text β image), returned inline so Claude can see it.
Why Cloudflare Workers?
Claude's custom connectors are reached from Anthropic's cloud over the public internet, so the
server must be hosted. Cloudflare Workers is a great fit: generous free tier, one-command deploy, and
Workers AI gives free image models via the env.AI binding β so the default path needs no API key
and no billing at all.
Related MCP server: nano-banana-claude
Deploy (β2 minutes)
npm install
npx wrangler login # opens a browser; or set CLOUDFLARE_API_TOKEN
npm run deployWrangler prints your URL. The MCP endpoint is:
https://nb-mcp.<your-subdomain>.workers.dev/mcpOpen the root URL in a browser to confirm it's live. That's it β the default Workers AI backend works immediately on the free tier (no key needed).
Free tier: Workers AI includes a daily free allocation, enough for plenty of test images. Deploying the Worker itself is also free.
Add it to Claude
In Claude, go to Settings β Connectors (a.k.a. Customize β Connectors).
Click + Add custom connector.
Name:
nano banana(anything). URL: yourβ¦/mcpURL.Save (no OAuth needed β leave Advanced settings empty).
In a chat, open the + menu β Connectors and enable it, then ask Claude to make an image.
Try:
βGenerate an image of a neon cyberpunk street market, cinematic lighting.β
βMake a flat-vector logo of a banana wearing sunglasses on white.β
Tool: generate_image
param | type | required | description |
| string | β | What to draw. Be specific about subject, style, composition, colours, lighting, mood. |
|
| β | Model to use. Default |
| integer 1β8 | β | Workers AI (Flux) diffusion steps. Higher = better/slower. Default 4. |
Optional: enable nano banana (Gemini)
The repo keeps the original "nano banana" path as an option for when you want Google's model.
wrangler secret put GEMINI_API_KEY # paste your Google Gemini keyThen either call the tool with backend: "nano-banana", or make it the default by setting
NB_BACKEND = "nano-banana" under [vars] in wrangler.toml and redeploying.
β οΈ Gemini image generation requires billing. On Google's free tier the image model has a quota of 0 (you'll get HTTP 429). Enable billing on the project of your API key first. The default Workers AI backend has no such requirement.
Configuration
binding / var | where | purpose |
|
| Workers AI binding (free image backend). Required for |
|
| Only for the |
|
| Default backend: |
|
| Override Workers AI model (default |
|
| Override Gemini model (default |
Local development
npm install
npx wrangler login # the AI binding always runs remotely, so dev needs auth too
npm run dev # http://localhost:8787 (endpoint: /mcp)
# in another terminal, verify the MCP protocol:
node scripts/smoke-test.mjs # local
node scripts/smoke-test.mjs https://<worker>.workers.dev/mcp # remoteFor the nano-banana backend locally, copy .dev.vars.example β .dev.vars and add your key.
Security notes
The default Workers AI backend needs no secret. A
GEMINI_API_KEY(if used) is stored as a Cloudflare secret and never sent to Claude.The connector is unauthenticated by default β anyone with the URL can call it and use your Workers AI / Gemini quota. Keep the URL private, or add auth (Cloudflare Access in front of the Worker, or OAuth in the MCP layer).
How it works
Claude (Design / web / desktop)
β Streamable HTTP (MCP) POST /mcp
βΌ
Cloudflare Worker (src/index.ts) β stateless, hand-rolled MCP transport
β
ββ backend "workers-ai" β env.AI.run(Flux) β free, no key
ββ backend "nano-banana" β Gemini REST API β needs GEMINI_API_KEY + billing
β
βΌ
image returned inline to ClaudeTransport: stateless Streamable HTTP (
POST /mcp, SSE response). No Durable Objects, no Redis.Runtime deps: none. Just Wrangler + TypeScript for tooling.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Artur-ershov/nb-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server