Gemini Image & Video Generation MCP
A production-ready MCP server that enables Claude and other LLMs to generate images and videos using Google's Gemini AI models (Gemini 2.0 Flash and Veo 2.0).
README
Gemini Image & Video Generation MCP
A production-ready Model Context Protocol (MCP) server that enables Claude and other LLMs to generate images and videos using Google's Gemini AI models (Gemini 2.0 Flash and Veo 2.0).
๐ Features
Core Capabilities
- โจ Image Generation - Create images using Gemini 2.0 Flash (
gemini-2.0-flash-preview-image-generation) - ๐ฌ Video Generation - Generate videos using Veo 2.0 (
veo-2.0-generate-001) - ๐จ Image-to-Video - Animate images into videos with Veo 2.0
- ๐พ Local Storage - Automatically save generated content
- โ๏ธ Parameter Control - Fine-tune temperature, topK, and topP
Production Features
- ๐ Optional Authentication - Token-based API security
- โก Response Caching - 30-minute TTL cache for repeated prompts
- ๐ Rate Limiting - Prevent API abuse (100/15min general, 20/15min generation)
- โ Input Validation - Comprehensive request validation
- ๐ Pagination - Efficient gallery browsing with sorting
- ๐ Configurable CORS - Environment-based origin control
- ๐ OpenAPI Documentation - Interactive Swagger UI at
/api-docs - ๐งช Test Suite - 17 automated tests with Jest
- ๐ณ Docker Support - Easy containerized deployment
๐ Prerequisites
- Node.js 18 or higher
- Google API Key with access to:
- Gemini 2.0 Flash (image generation)
- Veo 2.0 (video generation)
- Docker (optional, for containerized deployment)
๐ Quick Start
Installation
# Clone the repository
git clone https://github.com/your-org/gemini-image-gen-mcp.git
cd gemini-image-gen-mcp
# Install dependencies
npm install
# Configure environment
cp .env.example .env
# Edit .env and add your GEMINI_API_KEY
Running the Server
Option 1: Node.js (Development)
# MCP server only (for Claude integration)
npm start
# Web server with REST API + UI
npm run web
# Or use the start script
./start-server.sh --both # Both servers
./start-server.sh --mcp-only # MCP only
./start-server.sh --web-only # Web only
Option 2: Docker (Production)
docker-compose up -d
The web interface will be available at http://localhost:3070
๐ฏ API Endpoints
Generation Endpoints
POST /api/generate-image- Generate an image from a text promptPOST /api/generate-video- Generate a video from a text promptPOST /api/generate-video-from-image- Generate a video from an initial image
Gallery Endpoints
GET /api/images?page=1&limit=20- List generated images (paginated)GET /api/videos?page=1&limit=20- List generated videos (paginated)
System Endpoints
GET /health- Health checkGET /api-docs- Interactive Swagger UI documentationGET /api-docs.json- OpenAPI JSON specificationGET /api/cache/stats- View cache statisticsPOST /api/cache/clear- Clear response cache (requires auth)
๐ API Documentation
Interactive API documentation is available at:
- Swagger UI: http://localhost:3070/api-docs
- OpenAPI JSON: http://localhost:3070/api-docs.json
The Swagger UI provides:
- Complete endpoint documentation
- Request/response schemas
- Try-it-now functionality
- Authentication testing
- Parameter descriptions and examples
๐ Authentication
Authentication is optional and can be enabled by setting the API_AUTH_TOKEN environment variable:
# In .env file
API_AUTH_TOKEN=your-secure-token-here
Using Authentication
Bearer Token (Recommended):
curl -H "Authorization: Bearer your-secure-token-here" \
-H "Content-Type: application/json" \
-d '{"prompt": "A sunset over mountains"}' \
http://localhost:3070/api/generate-image
Query Parameter (Alternative):
curl -X POST \
"http://localhost:3070/api/generate-image?token=your-secure-token-here" \
-H "Content-Type: application/json" \
-d '{"prompt": "A sunset over mountains"}'
โ๏ธ Configuration Options
All configuration is done via environment variables in .env:
| Variable | Description | Default |
|---|---|---|
GEMINI_API_KEY |
Required - Google Gemini API key | - |
API_AUTH_TOKEN |
Optional - API authentication token | - |
MCP_AUTH_TOKEN |
Optional - MCP server authentication | - |
PORT |
Web server port | 3070 |
OUTPUT_DIR |
Base directory for generated files | ./generated-images |
LOG_LEVEL |
Logging level (debug, info, warn, error) | info |
CORS_ORIGINS |
Comma-separated allowed origins | * |
RATE_LIMIT_MAX |
Max requests per 15min per IP | 100 |
GENERATION_RATE_LIMIT |
Max generation requests per 15min | 20 |
ENABLE_CACHE |
Enable response caching | true |
๐งช Testing
# Run all tests
npm test
# Run tests in watch mode
npm run test:watch
# Run tests with coverage report
npm run test:coverage
Current Test Coverage:
- 2 test suites
- 17 tests passing
- Coverage: Authentication, Tool Schemas, Input Validation
๐ณ Docker Deployment
Using Docker Compose (Recommended)
# Start services
docker-compose up -d
# View logs
docker-compose logs -f
# Stop services
docker-compose down
Manual Docker Build
# Build image
docker build -t gemini-image-gen-mcp .
# Run container
docker run -d \
-p 3070:3070 \
-e GEMINI_API_KEY=your_key_here \
-v $(pwd)/generated-images:/app/generated-images \
-v $(pwd)/generated-videos:/app/generated-videos \
gemini-image-gen-mcp
๐ Usage with Claude
Claude Desktop Configuration
Add to your Claude Desktop config file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"gemini-image-generation": {
"command": "node",
"args": ["/full/path/to/gemini-image-gen-mcp/src/mcp-server.js"],
"env": {
"GEMINI_API_KEY": "your-gemini-api-key-here"
}
}
}
}
Claude API Usage
# Example prompt to Claude
"Please generate an image of a serene mountain landscape at sunset using the Gemini image generation tool"
Claude will automatically invoke the MCP server's generate_image tool.
๐จ Web Interface
The web interface provides three main sections:
1. Generator Tab
- Enter text prompts for image/video generation
- Adjust generation parameters (temperature, topP, topK)
- Use sample prompts for quick testing
- View generation results with enhanced prompts
2. Gallery Tab
- Browse all generated images and videos
- Pagination support (20 items per page)
- Sorted by newest first
- Click to view full size
3. About Tab
- Project information
- Feature list
- Configuration details
- API documentation links
๐ Performance & Optimization
Response Caching
- Automatically caches successful generation results
- 30-minute TTL (configurable)
- Reduces API costs for repeated prompts
- Cache key includes: prompt + model + parameters
- View cache stats at
/api/cache/stats
Exponential Backoff
- Smart video polling (2s โ 30s max)
- Reduces API calls by ~60%
- Prevents API rate limiting
Async I/O
- Non-blocking file operations
- Improved server responsiveness
- Better handling of concurrent requests
Pagination
- Constant memory usage
- Handles galleries with thousands of items
- Sorted by modification time
๐ก๏ธ Security Features
- โ Input Validation - All parameters validated with express-validator
- โ Rate Limiting - Two-tier system (general + generation specific)
- โ Request Size Limits - 10MB max to prevent DoS
- โ CORS Configuration - Environment-based origin control
- โ Optional Authentication - Token-based API security
- โ No Hardcoded Secrets - All credentials via environment variables
๐ง Troubleshooting
Common Issues
"GEMINI_API_KEY is not set" error:
# Make sure .env file exists and contains:
GEMINI_API_KEY=your_actual_key_here
Port already in use:
# Change port in .env file:
PORT=3080
Cache not working:
# Check cache is enabled in .env:
ENABLE_CACHE=true
# View cache stats:
curl http://localhost:3070/api/cache/stats
Rate limit exceeded:
# Increase limits in .env:
RATE_LIMIT_MAX=200
GENERATION_RATE_LIMIT=50
๐ Example API Requests
Generate an Image
curl -X POST http://localhost:3070/api/generate-image \
-H "Content-Type: application/json" \
-d '{
"prompt": "A futuristic cityscape at night with neon lights",
"temperature": 0.8,
"topP": 0.95,
"topK": 40
}'
Generate a Video
curl -X POST http://localhost:3070/api/generate-video \
-H "Content-Type: application/json" \
-d '{
"prompt": "A bird flying through a forest",
"temperature": 1.0
}'
List Images with Pagination
curl "http://localhost:3070/api/images?page=1&limit=10"
๐ค Contributing
Contributions are welcome! Please:
- Fork the repository
- Create a feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'Add amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
Development Guidelines
- Run tests before committing:
npm test - Follow existing code style
- Update documentation for new features
- Add tests for new functionality
๐ License
ISC
๐ Acknowledgments
- Built with Model Context Protocol
- Powered by Google Gemini AI
- Video generation using Veo 2.0
๐ Support
For issues and questions:
- Open an issue on GitHub
- Check the API Documentation
- Review the troubleshooting section above
Made with โค๏ธ for the AI community
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.