We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/zhongweili/nanobanana-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•484 B
"""
Nano Banana MCP Server - AI-powered image generation and editing via Gemini 2.5 Flash Image.
A production-ready Model Context Protocol server built with FastMCP.
"""
__version__ = "0.1.5"
__author__ = "Nano Banana Team"
__email__ = "team@nanobanana.dev"
__description__ = "A production-ready MCP server for AI-powered image generation using Gemini 2.5 Flash Image"
from .server import create_app, create_wrapper_app, main
__all__ = ["create_app", "create_wrapper_app", "main"]