Rank
83
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
Crawler Summary
MCP server for AI image generation ๐ MCP Image Generator Powered by Gemini 3 Pro Image - Nano Banana Pro ๐ A powerful MCP (Model Context Protocol) server that enables AI assistants to generate and edit images using Google's Gemini 3 Pro Image (Nano Banana Pro ๐). Seamlessly integrate advanced image generation capabilities into Codex, Cursor, Claude Code, and other MCP-compatible AI tools. โจ Features - **AI-Powered Image Generation**: Create images Published capability contract available. No trust telemetry is available yet. 57 GitHub stars reported by the source. Last updated 2/25/2026.
Freshness
Last checked 2/25/2026
Best For
Contract is available with explicit auth and schema references.
Not Ideal For
mcp-image is not ideal for teams that need stronger public trust telemetry, lower setup complexity, or more explicit contract coverage before production rollout.
Evidence Sources Checked
editorial-content, capability-contract, runtime-metrics, public facts pack
MCP server for AI image generation ๐ MCP Image Generator Powered by Gemini 3 Pro Image - Nano Banana Pro ๐ A powerful MCP (Model Context Protocol) server that enables AI assistants to generate and edit images using Google's Gemini 3 Pro Image (Nano Banana Pro ๐). Seamlessly integrate advanced image generation capabilities into Codex, Cursor, Claude Code, and other MCP-compatible AI tools. โจ Features - **AI-Powered Image Generation**: Create images
Public facts
7
Change events
1
Artifacts
0
Freshness
Feb 25, 2026
Published capability contract available. No trust telemetry is available yet. 57 GitHub stars reported by the source. Last updated 2/25/2026.
Trust score
Unknown
Compatibility
MCP
Freshness
Feb 25, 2026
Vendor
Shinpr
Artifacts
0
Benchmarks
0
Last release
0.7.0
Key links, install path, and a quick operational read before the deeper crawl record.
Summary
Published capability contract available. No trust telemetry is available yet. 57 GitHub stars reported by the source. Last updated 2/25/2026.
Setup snapshot
git clone https://github.com/shinpr/mcp-image.gitSetup complexity is MEDIUM. Standard integration tests and API key provisioning are required before connecting this to production workloads.
Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.
Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.
Vendor
Shinpr
Protocol compatibility
MCP
Auth modes
mcp, api_key
Machine-readable schemas
OpenAPI or schema references published
Adoption signal
57 GitHub stars
Handshake status
UNKNOWN
Crawlable docs
6 indexed pages on the official domain
Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.
Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.
Extracted files
0
Examples
6
Snippets
0
Languages
typescript
bash
npx mcp-image skills install --path <target-directory>
bash
# Cursor npx mcp-image skills install --path ~/.cursor/skills # Codex npx mcp-image skills install --path ~/.codex/skills # Claude Code npx mcp-image skills install --path ~/.claude/skills
toml
[mcp_servers.mcp-image] command = "npx" args = ["-y", "mcp-image"] [mcp_servers.mcp-image.env] GEMINI_API_KEY = "your_gemini_api_key_here" IMAGE_OUTPUT_DIR = "/absolute/path/to/images"
json
{
"mcpServers": {
"mcp-image": {
"command": "npx",
"args": ["-y", "mcp-image"],
"env": {
"GEMINI_API_KEY": "your_gemini_api_key_here",
"IMAGE_OUTPUT_DIR": "/absolute/path/to/images"
}
}
}
}bash
cd /path/to/your/project claude mcp add mcp-image --env GEMINI_API_KEY=your-api-key --env IMAGE_OUTPUT_DIR=/absolute/path/to/images -- npx -y mcp-image
bash
claude mcp add mcp-image --scope user --env GEMINI_API_KEY=your-api-key --env IMAGE_OUTPUT_DIR=/absolute/path/to/images -- npx -y mcp-image
Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB MCP
Editorial quality
ready
MCP server for AI image generation ๐ MCP Image Generator Powered by Gemini 3 Pro Image - Nano Banana Pro ๐ A powerful MCP (Model Context Protocol) server that enables AI assistants to generate and edit images using Google's Gemini 3 Pro Image (Nano Banana Pro ๐). Seamlessly integrate advanced image generation capabilities into Codex, Cursor, Claude Code, and other MCP-compatible AI tools. โจ Features - **AI-Powered Image Generation**: Create images
Powered by Gemini 3 Pro Image - Nano Banana Pro ๐
A powerful MCP (Model Context Protocol) server that enables AI assistants to generate and edit images using Google's Gemini 3 Pro Image (Nano Banana Pro ๐). Seamlessly integrate advanced image generation capabilities into Codex, Cursor, Claude Code, and other MCP-compatible AI tools.
This project also provides a standalone Agent Skill that teaches AI assistants to write better image generation prompts โ no MCP server or API key required.
Note: This skill does not generate images itself โ it teaches your AI assistant to write better prompts. Your AI tool must already have built-in image generation capabilities (e.g., Cursor's image generation feature).
A reference guide that AI assistants use to improve image generation prompts based on the Subject-Context-Style framework. Works with any image model (Gemini, DALL-E, Flux, Stable Diffusion, etc.).
Covers:
npx mcp-image skills install --path <target-directory>
The skill will be placed at <path>/image-generation/SKILL.md. Specify the skills directory for your AI tool:
# Cursor
npx mcp-image skills install --path ~/.cursor/skills
# Codex
npx mcp-image skills install --path ~/.codex/skills
# Claude Code
npx mcp-image skills install --path ~/.claude/skills
| | MCP Server | Agent Skill | |---|---|---| | Use when | Your AI tool does not have built-in image generation | Your AI tool already generates images natively | | Requires | Gemini API key | Nothing | | What it does | Generates images via API | Teaches the AI to write better prompts | | Works with | MCP-compatible tools | Any tool supporting the Agent Skills standard |
Get your API key from Google AI Studio
Add to ~/.codex/config.toml:
[mcp_servers.mcp-image]
command = "npx"
args = ["-y", "mcp-image"]
[mcp_servers.mcp-image.env]
GEMINI_API_KEY = "your_gemini_api_key_here"
IMAGE_OUTPUT_DIR = "/absolute/path/to/images"
Add to your Cursor settings:
~/.cursor/mcp.json.cursor/mcp.json in your project root{
"mcpServers": {
"mcp-image": {
"command": "npx",
"args": ["-y", "mcp-image"],
"env": {
"GEMINI_API_KEY": "your_gemini_api_key_here",
"IMAGE_OUTPUT_DIR": "/absolute/path/to/images"
}
}
}
}
Run in your project directory to enable for that project:
cd /path/to/your/project
claude mcp add mcp-image --env GEMINI_API_KEY=your-api-key --env IMAGE_OUTPUT_DIR=/absolute/path/to/images -- npx -y mcp-image
Or add globally for all projects:
claude mcp add mcp-image --scope user --env GEMINI_API_KEY=your-api-key --env IMAGE_OUTPUT_DIR=/absolute/path/to/images -- npx -y mcp-image
โ ๏ธ Security Note: Never commit your API key to version control. Keep it secure and use environment-specific configuration.
๐ Path Requirements:
IMAGE_OUTPUT_DIR must be an absolute path (e.g., /Users/username/images, not ./images)./output in the current working directory if not specifiedSet SKIP_PROMPT_ENHANCEMENT=true to disable automatic prompt optimization and send your prompts directly to the image generator. Useful when you need full control over the exact prompt wording.
Codex:
[mcp_servers.mcp-image.env]
GEMINI_API_KEY = "your_gemini_api_key_here"
SKIP_PROMPT_ENHANCEMENT = "true"
IMAGE_OUTPUT_DIR = "/absolute/path/to/images"
Cursor:
Add "SKIP_PROMPT_ENHANCEMENT": "true" to the env section in your config.
Claude Code:
claude mcp add mcp-image --env GEMINI_API_KEY=your-api-key --env SKIP_PROMPT_ENHANCEMENT=true --env IMAGE_OUTPUT_DIR=/absolute/path/to/images -- npx -y mcp-image
Once configured, your AI assistant can generate images using natural language:
"Generate a serene mountain landscape at sunset with a lake reflection"
The system automatically enhances this to include rich details about lighting, materials, composition, and atmosphere for optimal results.
"Edit this image to make the person face right"
(with inputImagePath: "/path/to/image.jpg")
Character Consistency:
"Generate a portrait of a medieval knight, maintaining character consistency for future variations"
(with maintainCharacterConsistency: true)
High-Resolution 4K Generation:
"Generate a professional product photo of a smartphone with clear text on the screen"
(with imageSize: "4K")
Custom Aspect Ratio:
"Generate a cinematic landscape of a desert at golden hour"
(with aspectRatio: "21:9")
generate_image ToolThe MCP server exposes a single tool for all image operations. Internally, it uses a two-stage process:
| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| prompt | string | โ
| Text description or editing instruction |
| inputImagePath | string | - | Absolute path to input image for editing |
| fileName | string | - | Custom filename for output (auto-generated if not specified) |
| aspectRatio | string | - | Aspect ratio for the generated image. Supported values: 1:1 (square, default), 2:3, 3:2, 3:4, 4:3, 4:5, 5:4, 9:16, 16:9, 21:9 |
| imageSize | string | - | Image resolution for high-quality output. Specify 2K or 4K for higher resolution images with better text rendering and fine details. Leave unspecified for standard quality. Supported values: 2K, 4K |
| blendImages | boolean | - | Enable multi-image blending for combining multiple visual elements naturally |
| maintainCharacterConsistency | boolean | - | Maintain character appearance consistency across different poses and scenes |
| useWorldKnowledge | boolean | - | Use real-world knowledge for accurate context (recommended for historical figures, landmarks, or factual scenarios) |
| useGoogleSearch | boolean | - | Enable Google Search grounding to access real-time web information for factually accurate image generation. Use when prompt requires current or time-sensitive data that may have changed since the model's knowledge cutoff. Leave disabled for creative, fictional, historical, or timeless content. |
| purpose | string | - | Intended use for the image (e.g., "cookbook cover", "social media post", "presentation slide"). Helps tailor visual style, quality level, and details to match the purpose. |
{
"type": "resource",
"resource": {
"uri": "file:///path/to/generated/image.png",
"name": "image-filename.png",
"mimeType": "image/png"
},
"metadata": {
"model": "gemini-3-pro-image-preview",
"processingTime": 5000,
"timestamp": "2024-01-01T12:00:00.000Z"
}
}
"API key not found"
GEMINI_API_KEY is set in your environment"Input image file not found"
"No image data found in Gemini API response"
useWorldKnowledge for historical or factual subjectsimageSize: "4K" when text clarity and fine details are criticalMIT License - see LICENSE for details.
Need help? Open an issue or check the troubleshooting section above.
Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.
Contract coverage
Status
ready
Auth
mcp, api_key
Streaming
No
Data region
global
Protocol support
Requires: mcp, lang:typescript
Forbidden: none
Guardrails
Operational confidence: medium
curl -s "https://xpersona.co/api/v1/agents/mcp-shinpr-mcp-image/snapshot"
curl -s "https://xpersona.co/api/v1/agents/mcp-shinpr-mcp-image/contract"
curl -s "https://xpersona.co/api/v1/agents/mcp-shinpr-mcp-image/trust"
Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.
Trust signals
Handshake
UNKNOWN
Confidence
unknown
Attempts 30d
unknown
Fallback rate
unknown
Runtime metrics
Observed P50
unknown
Observed P95
unknown
Rate limit
unknown
Estimated cost
unknown
Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.
Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.
Rank
83
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
Rank
80
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
Rank
74
Expose OpenAPI definition endpoints as MCP tools using the official Rust SDK for the Model Context Protocol (https://github.com/modelcontextprotocol/rust-sdk)
Traction
No public download signal
Freshness
Updated 2d ago
Rank
72
An actix_web backend for the official Rust SDK for the Model Context Protocol (https://github.com/modelcontextprotocol/rust-sdk)
Traction
No public download signal
Freshness
Updated 2d ago
Contract JSON
{
"contractStatus": "ready",
"authModes": [
"mcp",
"api_key"
],
"requires": [
"mcp",
"lang:typescript"
],
"forbidden": [],
"supportsMcp": true,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": "https://github.com/shinpr/mcp-image#input",
"outputSchemaRef": "https://github.com/shinpr/mcp-image#output",
"dataRegion": "global",
"contractUpdatedAt": "2026-02-24T19:46:12.630Z",
"sourceUpdatedAt": "2026-02-24T19:46:12.630Z",
"freshnessSeconds": 4421602
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/mcp-shinpr-mcp-image/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/mcp-shinpr-mcp-image/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/mcp-shinpr-mcp-image/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/mcp-shinpr-mcp-image/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/mcp-shinpr-mcp-image/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/mcp-shinpr-mcp-image/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"MCP"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "GITHUB_MCP",
"generatedAt": "2026-04-16T23:59:35.018Z"
}
},
"retryPolicy": {
"maxAttempts": 3,
"backoffMs": [
500,
1500,
3500
],
"retryableConditions": [
"HTTP_429",
"HTTP_503",
"NETWORK_TIMEOUT"
]
}
}Trust JSON
{
"status": "unavailable",
"handshakeStatus": "UNKNOWN",
"verificationFreshnessHours": null,
"reputationScore": null,
"p95LatencyMs": null,
"successRate30d": null,
"fallbackRate": null,
"attempts30d": null,
"trustUpdatedAt": null,
"trustConfidence": "unknown",
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Capability Matrix
{
"rows": [
{
"key": "MCP",
"type": "protocol",
"support": "supported",
"confidenceSource": "contract",
"notes": "Confirmed by capability contract"
},
{
"key": "mcp",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "mcp-server",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "model-context-protocol",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "image-generation",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "generative-ai",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "image-editing",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "prompt-enhancement",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "gemini",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "google-ai",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "nano-banana",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "claude-code",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "cursor",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "codex",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "typescript",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "agent-skills",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "skills",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "cli",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
}
],
"flattenedTokens": "protocol:MCP|supported|contract capability:mcp|supported|profile capability:mcp-server|supported|profile capability:model-context-protocol|supported|profile capability:image-generation|supported|profile capability:generative-ai|supported|profile capability:image-editing|supported|profile capability:prompt-enhancement|supported|profile capability:gemini|supported|profile capability:google-ai|supported|profile capability:nano-banana|supported|profile capability:claude-code|supported|profile capability:cursor|supported|profile capability:codex|supported|profile capability:typescript|supported|profile capability:agent-skills|supported|profile capability:skills|supported|profile capability:cli|supported|profile"
}Facts JSON
[
{
"factKey": "docs_crawl",
"category": "integration",
"label": "Crawlable docs",
"value": "6 indexed pages on the official domain",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
},
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Shinpr",
"href": "https://github.com/shinpr/mcp-image",
"sourceUrl": "https://github.com/shinpr/mcp-image",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-02-25T03:12:36.988Z",
"isPublic": true
},
{
"factKey": "traction",
"category": "adoption",
"label": "Adoption signal",
"value": "57 GitHub stars",
"href": "https://github.com/shinpr/mcp-image",
"sourceUrl": "https://github.com/shinpr/mcp-image",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-02-25T03:12:36.988Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "MCP",
"href": "https://xpersona.co/api/v1/agents/mcp-shinpr-mcp-image/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/mcp-shinpr-mcp-image/contract",
"sourceType": "contract",
"confidence": "high",
"observedAt": "2026-02-24T19:46:12.630Z",
"isPublic": true
},
{
"factKey": "auth_modes",
"category": "compatibility",
"label": "Auth modes",
"value": "mcp, api_key",
"href": "https://xpersona.co/api/v1/agents/mcp-shinpr-mcp-image/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/mcp-shinpr-mcp-image/contract",
"sourceType": "contract",
"confidence": "high",
"observedAt": "2026-02-24T19:46:12.630Z",
"isPublic": true
},
{
"factKey": "schema_refs",
"category": "artifact",
"label": "Machine-readable schemas",
"value": "OpenAPI or schema references published",
"href": "https://github.com/shinpr/mcp-image#input",
"sourceUrl": "https://xpersona.co/api/v1/agents/mcp-shinpr-mcp-image/contract",
"sourceType": "contract",
"confidence": "high",
"observedAt": "2026-02-24T19:46:12.630Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/mcp-shinpr-mcp-image/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/mcp-shinpr-mcp-image/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "docs_update",
"title": "Docs refreshed: Sign in to GitHub ยท GitHub",
"description": "Fresh crawlable documentation was indexed for the official domain.",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
}
]Sponsored
Ads related to mcp-image and adjacent AI workflows.