Gemini Image MCP
Allows generating and editing images using Google Gemini models, with tools for image creation, editing, listing models, and managing stored images.
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., "@Gemini Image MCPgenerate a 1200x630 webp image of a mountain sunset for my blog hero"
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.
Gemini Image MCP
A tiny remote MCP server that lets Claude (or any MCP client) generate images with Google Gemini. Claude can't create images on its own — connect this and it can. The generated image is stored on Vercel Blob and returned as a public URL you can drop straight into an <img src>, an OG tag, or a blog post.
Six tools:
generate_image(text → image, exact sizing + webp/jpeg compression),edit_image(image(s) + prompt → new image),list_models,list_images,fetch_image(bytes as base64 for sandboxed clients),delete_imageZero framework, one serverless function (
api/mcp.js), one dependency (@vercel/blob)Bring your own API key. Nothing is hard-coded; every secret is read from env.
Works as a claude.ai / Claude Cowork custom connector (streamable-HTTP + SSE + token auth).
Deploy your own (5 minutes)
The button clones this repo into your own GitHub account and deploys that copy — no manual fork needed.
Or manually: Fork this repo on GitHub first, then Vercel → Add New → Project → import your fork (Framework preset: Other). Vercel's import list only shows repos in your own account, so a fork is required for the manual path.
1. Create a Vercel Blob store
Project → Storage → Create Database → Blob → Connect to this project.
This injects BLOB_READ_WRITE_TOKEN automatically — you don't set it by hand.
2. Set two environment variables
Project → Settings → Environment Variables:
Variable | Value |
| Your Gemini API key from Google AI Studio (billing-enabled project) |
| A secret you invent — it guards the endpoint. Generate one with |
BLOB_READ_WRITE_TOKENis added for you in step 1. The endpoint fails closed ifMCP_AUTH_TOKENis unset.
3. Turn off Deployment Protection
Project → Settings → Deployment Protection → Vercel Authentication: OFF. (Otherwise MCP clients get a 401 from Vercel's auth wall, before they ever reach the server.)
4. Redeploy
Deployments → latest → Redeploy so the env vars take effect.
Related MCP server: gemini-nano-banana-mcp
Connect it to Claude
In claude.ai → Settings → Connectors → Add custom connector, use:
https://<your-project>.vercel.app/api/mcp?token=<MCP_AUTH_TOKEN>The ?token= query param is how claude.ai passes auth (it has no custom-header field). Once connected, the generate_image tool appears in Claude and Cowork.
You can also use it from Claude Code by adding it to .mcp.json / your MCP config as an HTTP server with an Authorization: Bearer <MCP_AUTH_TOKEN> header.
The tools
generate_image — text → image
Arg | Type | Required | Notes |
| string | ✅ | Describe subject, style, lighting. Add "no text, no logos" for clean results. |
| string | – | Soft composition hint, e.g. |
| integer | – | Exact output size in px. Both set → cover-crop to exactly W×H (e.g. 1200×630 for OG). One set → proportional resize. |
| string | – |
|
| integer | – | 1–100 compression quality for webp/jpeg (default 82). |
| string | – | Base filename; a random suffix is added so every URL is unique. |
| string | – | Gemini model id (see |
Returns: { "url", "mime", "bytes", "model", "width", "height", "aspect_ratio" }
Blog hero/OG recipe:
width: 1200, height: 630, format: "webp"— one call, ready to embed.
edit_image — image(s) + prompt → new image
Feed existing image(s) and describe the change (recolor, add/remove an element, swap background, restyle, composite).
Arg | Type | Required | Notes |
| string | ✅* | Source image: an http(s) URL (e.g. one from |
| string[] | ✅* | Or up to 4 images — composite two photos, transfer a style, place a product on a background. |
| string | ✅ | What to change, e.g. "make the background dark navy, keep the apple". |
| – | Same output options as |
Returns: { "url", "mime", "bytes", "model", "width", "height", "sources" }
list_models — pick a model
No arguments. Returns the image-capable Gemini models (queried live, with a curated fallback) plus the default:
{ "default": "gemini-2.5-flash-image", "models": [ { "id": "gemini-2.5-flash-image", "description": "…" } ] }Pass any returned id as the model argument to generate_image / edit_image.
list_images — what's in the store
Arg | Type | Required | Notes |
| integer | – | Max results (default 100, max 1000). |
| string | – | Pagination cursor from the previous call. |
Returns { count, total_bytes, has_more, cursor, images: [{ url, pathname, size, uploaded_at }] } — handy for reviewing storage usage and finding candidates to clean up.
fetch_image — bring bytes into a sandboxed client
Some environments (e.g. Claude Cowork's cloud sandbox) can't download the Blob domain directly — but MCP tool results always get through. This tool returns the image as a base64 data: URL you can decode to a local file.
Arg | Type | Required | Notes |
| string | ✅ | Image URL to fetch (e.g. a Blob URL from |
| integer | – | Max px before re-encode (default 1024; |
| integer | – | webp quality (default 80). |
| boolean | – |
|
Returns { "data_url", "mime", "bytes", "source" }.
delete_image — clean up
Arg | Type | Required | Notes |
| string | ✅* | One Blob URL to delete. |
| string[] | ✅* | Or up to 100 URLs at once. |
⚠️ Permanent — a blog post embedding a deleted URL will show a broken image. Check usage first.
How it works
api/mcp.js is a single Vercel serverless function that speaks JSON-RPC 2.0 (MCP):
Auth:
Authorization: Bearer <MCP_AUTH_TOKEN>or?token=<MCP_AUTH_TOKEN>.initialize/tools/list/tools/callhandled inline.generate_image/edit_image→ call<model>:generateContent(text, or image + text), get base64 image bytes.Uploads the bytes to Vercel Blob (
put(..., { access: "public" })).Returns the public Blob URL.
Responds as
text/event-streamwhen the client'sAcceptheader asks for SSE (required by claude.ai), otherwise plain JSON.
Cost & notes
You pay for your own Gemini API usage and Vercel Blob storage/bandwidth. This project has no billing of its own.
The default model is
gemini-2.5-flash-image; calllist_modelsto see alternatives, or changeDEFAULT_MODELinapi/mcp.js.Keep
MCP_AUTH_TOKENsecret — anyone with the URL + token can spend your Gemini quota.
License
MIT — see LICENSE. Copy it, fork it, ship it.
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.
Related MCP Servers
- AlicenseAqualityDmaintenanceA minimal MCP server that wraps Google Gemini image generation, enabling users to generate images via a single tool prompt in Claude Code or other MCP hosts, with automatic filename collision handling.1MIT
- Alicense-qualityCmaintenanceMCP server that enables Claude Code to generate images using Google's Gemini image generation models.MIT
- Flicense-qualityBmaintenanceA remote MCP server that exposes Gemini image generation/editing as a custom connector for Claude, enabling image creation and editing from any chat interface.
- Flicense-qualityCmaintenanceRemote MCP server that exposes a generate_image tool allowing Claude to generate images via the Google Gemini API.
Related MCP Connectors
Hosted MCP server connecting claude.ai, ChatGPT and other AI apps to your own computer
MCP server for Grok Imagine AI video generation
MCP server for Flux AI image generation
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/uncleB-dev/gemini-image-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server