MCP server
by guilhermeaumo
Create images instantly with Nano Banana, a free online Gemini AI image generator. Share with public URLs—no downloads n
Generates images using Google's Gemini 2.5 Flash model and automatically uploads them to ImgBB, returning publicly accessible URLs for immediate web sharing without local file management.
Nano Banana (Gemini Image Generator) is a community-built MCP server published by guilhermeaumo that provides AI assistants with tools and capabilities via the Model Context Protocol. Create images instantly with Nano Banana, a free online Gemini AI image generator. Share with public URLs—no downloads n It is categorized under ai ml.
You can install Nano Banana (Gemini Image Generator) in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.
MIT
Nano Banana (Gemini Image Generator) is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
Add new capabilities to Claude beyond text generation
Example
Access external data sources, execute code, interact with tools and services
Transform Claude from chatbot to action-taking agent
Provide Claude with access to relevant context and data
Example
Load project documentation, access knowledge bases, query databases
Get more accurate, context-aware responses
Automate multi-step workflows combining AI and external tools
Example
Research → Summarize → Create document → Send notification
Complete complex tasks end-to-end without manual steps
Share your MCP server with the developer community
Nano Banana (Gemini Image Generator) is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
We evaluated Nano Banana (Gemini Image Generator) against two servers with overlapping tools; this profile had the clearer scope statement.
Nano Banana (Gemini Image Generator) has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
Useful MCP listing: Nano Banana (Gemini Image Generator) is the kind of server we cite when onboarding engineers to host + tool permissions.
Nano Banana (Gemini Image Generator) is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
According to our notes, Nano Banana (Gemini Image Generator) benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
Nano Banana (Gemini Image Generator) is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
Nano Banana (Gemini Image Generator) has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
We evaluated Nano Banana (Gemini Image Generator) against two servers with overlapping tools; this profile had the clearer scope statement.
Strong directory entry: Nano Banana (Gemini Image Generator) surfaces stars and publisher context so we could sanity-check maintenance before adopting.
showing 1-10 of 55
This project is an MCP (Model Context Protocol) server that generates images using the Google Gemini API.
This server implements the Model Context Protocol to expose a single tool, generate_image, to a compatible AI model. The tool accepts a text prompt, uses the Google Gemini API to generate an image, saves the image to the public/ directory for auditing, and returns the raw image data as a base64-encoded string.
You need a Google Gemini API key and ImgBB API key to use this server.
Access https://api.imgbb.com/ to generate a IMGBB API Key. This is used to store and host the image online.
{
"mcpServers": {
"mcp-nano-banana": {
"command": "uvx",
"args": [
"mcp-nano-banana"
],
"env": {
"GEMINI_API_KEY": "YOUR_API_KEY_HERE",
"IMGBB_API_KEY": "YOUR_API_KEY_HERE"
}
}
}
}
This project uses Python and its dependencies are defined in pyproject.toml. You can install them using pip:
pip install .
# Or
uv sync
This will install mcp, google-generativeai, and other required packages.
You need a Google Gemini API key and ImgBB API key to use this server.
Access https://api.imgbb.com/ to generate a IMGBB API Key. This is used to store and host the image online.
.env in the root of the project..env file in the following format: GEMINI_API_KEY="YOUR_API_KEY_HERE"
IMGBB_API_KEY="YOUR_API_KEY_HERE"
This server is designed to be run as a subprocess by an MCP client or using the mcp command-line tool. The server listens for requests on stdio.
uvx --from git+https://github.com/GuilhermeAumo/mcp-nano-banana mcp-nano-banana
To publish a new version of this package to PyPI:
Update the version
Edit the version field in pyproject.toml to the new version number.
Build the package
Run:
uv build
This will create .tar.gz and .whl files in the dist/ directory.
Upload to PyPI
uv publish
Tag the release (optional but recommended)
Commit the changes to github first, then:
git tag v<new-version>
git push --tags
Note:
For more details, see the Python Packaging User Guide.
Prerequisites
Time Estimate
15-60 minutes depending on server complexity
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
Model Context Protocol standardizes how AI hosts (Claude, Cursor) communicate with external tools and data sources through server implementations.
Protocols
Compatibility
✓ Use when
Use when you need Claude to access external data, execute actions, or integrate with tools. Best for extending AI capabilities beyond conversation.
✗ Avoid when
Avoid when native integrations exist (use official APIs directly), for real-time critical systems, or when security/compliance requires zero external dependencies.