Google Gemini MCP
Gemini MCP - Google Gemini image generation, video and search grounding inside Claude
I've been running this Gemini MCP server in my Claude Desktop setup for months. It's one of the few I leave on permanently — not because Gemini replaces Claude, but because grounded search, image generation, SVG diagrams, and video are things Gemini does well. Having them as tools inside Claude beats switching browser tabs.
Thirteen tools, covering the models people actually come looking for: Nano Banana Pro (gemini-3-pro-image-preview) for image generation, Veo 3.1 for video with synchronised audio, and Gemini 3.1 Pro for chat and deep research with Google Search grounding. Images, SVGs and video preview inline in Claude Desktop through MCP Apps rather than landing as a file path you have to go and open.
One npx command.
Quick Navigation
Get started | What it does | SVG generation | Image output | Configuration | Tools | Models | Requirements
What it looks like
Generated images, SVGs, and videos render inline in Claude Desktop with zoom controls, file paths, and prompt context:
Image generation | SVG / diagram generation |
|
|
Image embed | SVG embed | Video embed |
|
|
|
Related MCP server: Gemini MCP Server
Get started in two minutes
Step 1: Get a Gemini API key
Go to Google AI Studio and create one. The free tier covers most development use — you'll hit rate limits on deep research if you're hammering it, but for day-to-day work it's fine.
Step 2: Add to your Claude Desktop config
Config file locations:
Windows:
C:\Users\{username}\AppData\Roaming\Claude\claude_desktop_config.jsonmacOS:
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"gemini": {
"command": "npx",
"args": ["@houtini/gemini-mcp"],
"env": {
"GEMINI_API_KEY": "your-api-key-here"
}
}
}
}Step 3: Restart Claude Desktop
That's it. Tools show up automatically. npx pulls the package on first run — no separate install needed.
Local build instead
For development, or if you'd rather not rely on npx:
git clone https://github.com/houtini-ai/gemini-mcp
cd gemini-mcp
npm install --include=dev
npm run buildThen point your config at the local build:
{
"mcpServers": {
"gemini": {
"command": "node",
"args": ["C:/path/to/gemini-mcp/dist/index.js"],
"env": {
"GEMINI_API_KEY": "your-api-key-here"
}
}
}
}Claude Code (CLI)
Claude Code uses a different registration mechanism — it doesn't read claude_desktop_config.json. Use claude mcp add instead:
claude mcp add -e GEMINI_API_KEY=your-api-key-here -s user gemini -- npx -y @houtini/gemini-mcpWith optional image output directory:
claude mcp add \
-e GEMINI_API_KEY=your-api-key-here \
-e GEMINI_IMAGE_OUTPUT_DIR=/path/to/output \
-s user \
gemini -- npx -y @houtini/gemini-mcpVerify with claude mcp get gemini — you should see Status: Connected.
What it does
Chat with Google Search grounding
Use gemini:gemini_chat to ask: "What changed in the MCP spec in the last month?"Grounding is on by default. Gemini searches Google before answering, so you get current information rather than training cutoff answers. Sources come back as markdown links. For questions where you want pure reasoning — "explain this code" or similar — set grounding: false.
Supports thinking_level on Gemini 3 models: high for maximum reasoning depth, low to keep it fast, medium/minimal on Gemini 3 Flash only.
Deep research
Use gemini:gemini_deep_research with:
research_question="What are the current approaches to AI agent memory management?"
max_iterations=5Runs multiple grounded search iterations then synthesises a full report. Takes 2-5 minutes depending on complexity — worth it for anything needing comprehensive coverage rather than a quick answer.
Set max_iterations to 3-4 in Claude Desktop (4-minute tool timeout). In IDEs (Cursor, Windsurf, VS Code) or agent frameworks, 7-10 iterations produces noticeably better synthesis. Pass focus_areas as an array to steer toward specific angles.
Image generation with search grounding
Use gemini:generate_image with:
prompt="Stock price chart showing Apple (AAPL) closing prices for the last 5 trading days"
use_search=true
aspectRatio="16:9"Default model is gemini-3-pro-image-preview (Nano Banana Pro). Also supports gemini-2.5-flash-image for faster generation.
When use_search=true, Gemini searches Google for current data before generating. Financial and news queries work reliably. The full-resolution image saves to disk automatically — the inline preview is resized for transport but the original is untouched.
Video generation with Veo 3.1
Use gemini:generate_video with:
prompt="A close-up shot of a futuristic coffee machine brewing a glowing blue espresso, steam rising dramatically. Cinematic lighting."
resolution="1080p"
durationSeconds=8Uses Google's Veo 3.1 model. Generates 4-8 second videos at up to 4K with native synchronised audio. Processing takes 2-5 minutes — the tool polls automatically until ready.
Options worth knowing:
aspectRatio—16:9landscape or9:16portrait/verticalgenerateAudio— on by default, produces dialogue and sound effects matching the promptsampleCount— generate up to 4 variations in one callseed— deterministic output across runsgenerateThumbnail— extracts a frame via ffmpeg (needs ffmpeg in PATH)firstFrameImage— animate from a starting image (image-to-video)
SVG generation
This is the one people underestimate. SVG output isn't just diagrams — it's production-ready vector graphics you can drop straight into a codebase, a presentation, or a web page. Clean, scalable, no raster artefacts.
Use gemini:generate_svg with:
prompt="Architecture diagram showing a microservices system with API gateway, three services, and a shared database"
style="technical"
width=1000
height=600Four styles:
Style | Best for |
| Architecture diagrams, flowcharts, system maps |
| Illustrations, decorative graphics, icons |
| Clean data visualisations, simple charts |
| Complex charts, dashboards, infographics |
The output is actual SVG code — edit it, animate it, embed it in HTML, commit it to a repo. No rasterising, no export steps, no Figma required.

Image editing and analysis
Conversational editing — Gemini 3 Pro Image maintains context across editing turns. Pass thought signatures back on subsequent edit_image calls for full continuity:
Use gemini:edit_image with:
prompt="Change the colour scheme to blue and green"
images=[{data: imageBase64, mimeType: "image/png", thoughtSignature: "fromPreviousCall"}]Analysis — two tools for different purposes:
describe_image— Fast general descriptions using Gemini 3 Flashanalyze_image— Structured extraction and detailed reasoning using Gemini 3.1 Pro
Load local files:
Use gemini:load_image_from_path with filePath="C:/screenshots/error.png"Media resolution control
Reduce token usage by up to 75% whilst maintaining quality for the task:
Level | Tokens | Savings | Best for |
| 280 | 75% | Simple tasks, bulk operations |
| 560 | 50% | PDFs/documents (OCR saturates here) |
| 1120 | default | Detailed analysis |
| 2000+ | per-image only | Maximum detail |
For PDF OCR, MEDIUM gives identical text extraction quality to HIGH at half the tokens.
Landing page generation
Use gemini:generate_landing_page with:
brief="A SaaS tool that helps developers monitor API latency"
companyName="PingWatch"
primaryColour="#6366F1"
style="startup"
sections=["hero", "features", "pricing", "cta"]Returns a self-contained HTML file — inline CSS and vanilla JS, no external dependencies. Styles: minimal, bold, corporate, startup.
Professional chart design systems
gemini_prompt_assistant includes 9 professional chart design systems:
System | Inspiration | Best for |
storytelling | Cole Nussbaumer Knaflic | Executive presentations |
financial | Financial Times | Editorial journalism — FT Pink, serif titles |
terminal | Bloomberg / Fintech | High-density dark mode with neon |
modernist | W.E.B. Du Bois | Bold geometric blocks, stark contrasts |
professional | IBM Carbon / Tailwind | Enterprise dashboards |
editorial | FiveThirtyEight / Economist | Data journalism |
scientific | Nature / Science | Academic rigour |
minimal | Edward Tufte | Maximum data-ink ratio |
dark | Observable | Modern dark mode |
Help system
Use gemini:gemini_help with topic="overview"Full documentation without leaving Claude. Topics: overview, image_generation, image_editing, image_analysis, chat, deep_research, grounding, media_resolution, models, all.
Image output and storage
By default, images return as inline previews rendered directly in Claude. Set GEMINI_IMAGE_OUTPUT_DIR to auto-save everything:
"env": {
"GEMINI_API_KEY": "your-api-key-here",
"GEMINI_IMAGE_OUTPUT_DIR": "C:/Users/username/Pictures/gemini-output"
}The server uses a two-tier approach to handle the MCP protocol's 1MB JSON-RPC limit whilst preserving full-resolution files:
Tier | Purpose |
Full-res | Saved to disk immediately, untouched |
Preview | Resized JPEG for inline transport — dynamically sized to fit under the cap |
Gemini returns 2-5MB images. The resize is smart — it measures the non-image overhead in each response and calculates the exact binary budget available, stepping down dimensions (800→600→400→300→200px) until it fits. The full image is always there on disk.
Configuration reference
Variable | Required | Default | Description |
| Yes | — | Google AI API key from AI Studio |
| No |
| Default model for |
| No |
| Enable Google Search grounding by default |
| No | — | Auto-save directory for generated images and videos |
| No |
| Include experimental/preview models in auto-discovery |
| No |
| Write logs to |
| No |
| Log to stderr for debugging tool calls |
Tools reference
Tool | Description |
| Chat with Gemini 3.1 Pro. Google Search grounding on by default. Supports |
| Multi-step iterative research with Google Search. Synthesises comprehensive reports |
| Lists available models from the Gemini API |
| Documentation for all features without leaving Claude |
| Expert guidance for image generation with 9 chart design systems |
| Image generation with optional search grounding. Full-res saved to disk |
| Edit images with natural-language instructions. Multi-turn continuity via thought signatures |
| Fast image descriptions using Gemini 3 Flash |
| Structured extraction and analysis using Gemini 3.1 Pro |
| Read a local image file and return base64 for any image tool |
| Video generation with Veo 3.1 — 4-8 seconds at up to 4K with native audio |
| Production-ready SVG: diagrams, illustrations, icons, data visualisations |
| Self-contained HTML landing pages with inline CSS/JS |
Model reference
Model | Used by | Notes |
|
| Default. Advanced reasoning |
|
| Nano Banana Pro — highest quality image generation |
|
| Faster generation, higher volume |
|
| Fast general descriptions |
|
| Veo 3.1 — 4K video with native audio |
Gemini 3 notes: Temperature is forced to 1.0 on Gemini 3 models (Google's requirement — lower values cause looping). Thinking level only applies to gemini_chat.
Token budgets: max_tokens defaults to each model's full output ceiling as reported live by the models API (65,536 on current Gemini 3 text models — the 1M figure is input context). It's a cap, not consumption: unused headroom costs nothing. Values below 4,096 are ignored (Gemini 3 thinking burns tiny budgets before any visible output, which looks like a timeout) and values above the model's real limit are clamped.
Requirements
Node.js 18+
A Gemini API key from Google AI Studio
ffmpeg (optional, for video thumbnail extraction)
Licence
Apache-2.0
Available Tools
13 toolsanalyze_imageAnalyze ImageA
Analyze and extract information from one or more images using Gemini multimodal understanding. Returns a text analysis - no image is generated. Default model: gemini-3-pro-preview. DO NOT SET max_tokens - the server allocates the model's full output ceiling automatically; a small cap is spent on Gemini 3 thinking and returns empty output that looks like a timeout. [MCP_RECOMMENDED_TIMEOUT_MS: 300000]
| Name | Required | Description | Default |
|---|---|---|---|
| model | No | Omit to use gemini-3-pro-preview. Other valid options: gemini-3.1-pro-preview, gemini-3-flash-preview. Do NOT pass gemini-1.5-* or gemini-pro-vision — those are out of support. | |
| images | Yes | One or more images to analyze | |
| prompt | Yes | What to analyze or extract from the image(s) | |
| max_tokens | No | Output token budget INCLUDING Gemini 3 thinking tokens. OMIT THIS — the server allocates the model's full output ceiling (a cap, not consumption; unused headroom costs nothing). Values below 4096 are IGNORED; values above the model's real limit are clamped. | |
| global_media_resolution | No | Global image quality for cost optimization. MEDIUM recommended for PDFs (50% savings). |
Output Schema
| Name | Required | Description |
|---|---|---|
| content | Yes | |
| success | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full behavioral burden and does so excellently. It discloses output modality, the default model, the server-side max_tokens allocation behavior, the Gemini 3 thinking-token pitfall that can mimic a timeout, and a recommended timeout value. This is genuine transparency beyond what the schema provides.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is front-loaded with purpose, then provides output modality, model default, a critical warning, and a timeout recommendation in only four sentences. Every sentence earns its place; there is no filler or redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a 5-parameter tool with a 100% documented schema and an output schema, the description is complete enough. It covers what the tool does, what it returns, the default model, the critical max_tokens constraint, and timeout expectations. The structured schema and output schema handle parameter details and return values, so the description does not need to repeat them.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with detailed per-parameter descriptions, so the baseline is 3. The description adds value by explicitly warning against setting max_tokens and explaining why ('a small cap is spent on Gemini 3 thinking and returns empty output that looks like a timeout'), plus pointing out the default model. This elevates it above the schema-only baseline.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a specific verb and resource: 'Analyze and extract information from one or more images using Gemini multimodal understanding.' It also clarifies the output type ('Returns a text analysis - no image is generated'), which distinguishes it from image-generation siblings like generate_image. This is a clear, non-tautological statement of purpose.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives clear use context: analyze/extract information from images and produce text output, not an image. It also provides critical operational guidance such as omitting max_tokens, the default model, and a recommended timeout. However, it does not explicitly name alternative tools like describe_image or state when NOT to use this tool versus those siblings, so it falls just short of a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
describe_imageDescribe Image (Nano Banana Pro)A
Analyze and describe one or more images using Google Gemini image models (Nano Banana Pro). Returns a text description — no image is generated. Default model: gemini-3-flash-preview. [MCP_RECOMMENDED_TIMEOUT_MS: 180000]
| Name | Required | Description | Default |
|---|---|---|---|
| model | No | Omit to use gemini-3-flash-preview. Other valid options: gemini-3-pro-preview, gemini-3.1-pro-preview. Do NOT pass gemini-1.5-* or gemini-pro-vision — those are out of support. | |
| images | Yes | One or more images to describe/analyze | |
| prompt | No | Optional custom analysis prompt (default: general description) | |
| global_media_resolution | No | Global image quality for cost optimization. MEDIUM recommended for PDFs (50% savings). |
Output Schema
| Name | Required | Description |
|---|---|---|
| content | Yes | |
| success | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It explicitly states the output is text and that no image is generated, and mentions the default model. The timeout recommendation is also included. However, it does not mention potential side effects, rate limits, cost implications, or any details about how the images are processed besides the model hint. This is adequate but not rich.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is compact — two sentences plus a timeout recommendation. The core purpose is front-loaded: 'Analyze and describe...' The rest is supplementary. Every part adds value: the output type, the no-generation assurance, and the default model. No fluff or redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's moderate complexity (4 params, nested images object, output schema present), the description covers the essential purpose, output, and default model. The schema handles parameter details, and the output schema clarifies return values. The timeout hint is a plus. However, it doesn't differentiate from the similar analyze_image sibling, which might be a slight gap. Overall, it's sufficiently complete for a description-focused tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100% — every parameter (model, images, prompt, global_media_resolution) is well-described in the schema, including sub-fields like filePath, mimeType, and mediaResolution. The description itself adds minimal parameter info beyond the schema, but since the schema covers everything, the baseline of 3 applies. The description does note the default model, which matches the schema's instructions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's action: 'Analyze and describe one or more images' using Gemini models, and specifies the output: 'Returns a text description'. It also explicitly notes that no image is generated, which differentiates it from generation tools like generate_image. The verb+resource+output is specific and unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context on what the tool does (describes images, returns text) and implicitly indicates it's for description rather than generation. However, it does not explicitly mention when to use this over alternatives like analyze_image or when not to use it. The 'no image is generated' hint suggests it's not for image generation, but no explicit alternatives or exclusions are given.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
edit_imageEdit Image with GeminiA
Edit one or more images using Google Gemini image models (Nano Banana Pro). Provide images and natural-language instructions for how to modify them. Returns edited image with inline preview and saves full-resolution to disk.
| Name | Required | Description | Default |
|---|---|---|---|
| model | No | Gemini image model to use (default: gemini-3-pro-image-preview) | |
| images | Yes | One or more images to edit | |
| prompt | Yes | Instructions for how to edit the image(s) | |
| outputPath | No | Optional file path to save the edited image (e.g., ./output/edited.png) | |
| use_search | No | Enable Google Search grounding for data-driven editing | |
| global_media_resolution | No | Global image quality setting (default: HIGH). See generate_image for details. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description discloses that the tool returns an edited image with preview and saves to disk, and mentions the underlying model family. However, it omits details such as token costs, whether the original is altered, or any side effects beyond saving. With no annotations, these gaps leave the description only partially transparent.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two concise sentences, front-loaded with purpose. Every word contributes, no redundancy or unnecessary detail.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has six parameters and no output schema, the description adequately covers the core workflow. It mentions return and disk saving, but does not elaborate on cost or how to choose between filePath and data for large images (though the schema covers that). Overall, it is reasonably complete for a typical use case.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has full (100%) coverage and detailed descriptions for every parameter, including resolution options and thoughtSignature. The tool description itself adds no new information about parameters beyond what the schema already states, so a baseline score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool edits images using Google Gemini image models (Nano Banana Pro), explicitly distinguishing it from generation tools. It also notes the return of an edited image with preview and disk saving, making its purpose unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description instructs to provide images and natural-language instructions, which implies the primary use case. It does not explicitly compare with alternatives like generate_image or mention when not to use it, but the context is clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
gemini_chatGemini ChatA
Chat with Google Gemini models. Grounded in Google Search by default, on gemini-3.1-pro-preview. DO NOT SET max_tokens - the server allocates the model's full output ceiling automatically. It is a cap, not consumption, so unused headroom costs nothing; setting a small one makes Gemini 3 thinking burn the whole budget and return empty output that looks like a timeout. [MCP_RECOMMENDED_TIMEOUT_MS: 300000]
| Name | Required | Description | Default |
|---|---|---|---|
| model | No | Omit to use the configured default (gemini-3.1-pro-preview). Other valid options: gemini-3-pro-preview, gemini-3-flash-preview. Do NOT pass gemini-1.5-* or gemini-pro — those are out of support. | |
| message | Yes | The message to send | |
| grounding | No | Enable Google Search grounding for real-time information | |
| max_tokens | No | Output token budget INCLUDING Gemini 3 thinking tokens. OMIT THIS — the server allocates the model's full output ceiling (queried live, 65,536 on current Gemini 3 text models). It is a cap, not consumption — unused headroom costs nothing. Values below 4096 are IGNORED (thinking burns them before any visible output) and values above the model's real limit are clamped to it. | |
| temperature | No | Controls randomness (0.0 to 1.0). Ignored on Gemini 3+ (forced to 1.0 per Google docs). | |
| system_prompt | No | Optional system instruction | |
| thinking_level | No | Thinking depth for Gemini 3 models only. "low" minimises latency for simple tasks. "high" (default for Gemini 3) maximises reasoning depth. "medium"/"minimal" available on Gemini 3 Flash only. Ignored for non-Gemini-3 models. |
Output Schema
| Name | Required | Description |
|---|---|---|
| content | Yes | |
| success | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It discloses critical behavioral traits: grounding by default, the max_tokens cap behavior (not consumption), the fact that values below 4096 are ignored, and that temperature is ignored on Gemini 3+ (forced to 1.0). It also explains the thinking_level parameter's scope and defaults. This is exemplary transparency for a complex tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is front-loaded with the core purpose and then dives into critical warnings. It is dense but not bloated; every sentence adds value. The only minor issue is that the max_tokens warning is repeated in both the description and the schema parameter description, which is slightly redundant but reinforces the critical point. Overall, it's well-structured and efficient.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (7 parameters, 1 required, 100% schema coverage, output schema present), the description is remarkably complete. It covers model selection, grounding, token budget behavior, temperature quirks, thinking levels, and timeout recommendations. The output schema exists, so return values don't need explanation. This is a model example of a complete tool description.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, but the description adds significant value beyond the schema. For max_tokens, it explains the cap-vs-consumption distinction, the 4096 threshold, and clamping behavior. For temperature, it notes the forced 1.0 on Gemini 3+. For thinking_level, it clarifies which models support which values. The description enriches every parameter with practical context.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Chat with Google Gemini models.' It specifies the default model (gemini-3.1-pro-preview) and grounding behavior, distinguishing it from sibling tools like gemini_deep_research or gemini_prompt_assistant. The verb 'chat' plus the resource 'Google Gemini models' is specific and unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides explicit usage guidance: it warns against setting max_tokens, explains the server's automatic allocation, and clarifies that small values cause thinking tokens to burn the budget and return empty output. It also includes a recommended timeout (300000 ms) and the schema details valid model options and exclusions (e.g., 'Do NOT pass gemini-1.5-* or gemini-pro'). This is comprehensive and actionable.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
gemini_deep_researchGemini Deep ResearchA
Conduct deep research on complex topics using iterative multi-step analysis with Gemini. This performs multiple searches and synthesizes comprehensive research reports (takes several minutes). [MCP_RECOMMENDED_TIMEOUT_MS: 900000]
| Name | Required | Description | Default |
|---|---|---|---|
| model | No | Model to use for deep research (defaults to latest available) | |
| focus_areas | No | Optional: specific areas to focus the research on | |
| max_iterations | No | Number of research iterations (1-10, default 1). Environment guidance: Claude Desktop: use 1-2 (4-min timeout). Agent SDK/IDEs (VSCode, Cursor, Windsurf)/AI platforms (Cline, Roo-Cline): can use 5-7 (longer timeout tolerance) | |
| research_question | Yes | The complex research question or topic to investigate deeply |
Output Schema
| Name | Required | Description |
|---|---|---|
| content | Yes | |
| success | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the burden of explaining behavior. It discloses that the tool performs multiple searches, synthesizes reports, and takes several minutes, including a recommended timeout. This is solid transparency for common behavioral concerns, even if it does not mention output format or potential failure modes.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences and front-loads the core purpose and approach. Every sentence adds value, and the recommended timeout is embedded in a compact, parseable tag rather than verbose prose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
This is a complex tool with an output schema, and the description covers the key behavioral side: iterative searches, report synthesis, and time requirement. It could say a bit more about what types of comprehensive reports are produced, but the output schema likely covers return-shape expectations.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema already provides 100% description coverage for all four parameters, so the baseline is 3. The description does not add extra parameter-level detail beyond what the schema supplies, but it reinforces that research_question should be complex and that the process is iterative.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly identifies the tool as conducting deep research on complex topics with iterative multi-step analysis, which uses a specific verb and resource. This distinguishes it from sibling tools like gemini_chat and gemini_prompt_assistant by emphasizing multiple searches and comprehensive research reports.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context for when to use this tool: complex topics requiring deep research, multiple searches, and comprehensive reports. It does not explicitly name alternatives for simpler queries, but the emphasis on complex topics and multi-step iteration makes the intended use case reasonably clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
gemini_helpGemini MCP HelpB
Get comprehensive help about Gemini MCP features, settings, and best practices
| Name | Required | Description | Default |
|---|---|---|---|
| topic | No | Help topic to display | overview |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. The description is generic, saying 'Get comprehensive help' but does not specify what the tool returns (e.g., text output, how it behaves when topic is invalid, whether it requires network access). It doesn't disclose any potential side effects or limitations, leaving the agent with minimal behavioral context.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is one concise sentence that clearly states the tool's purpose. It is front-loaded with the main verb 'Get' and includes the resource 'Gemini MCP' and the key aspects it covers, making it efficient and to the point.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a help tool with a simple schema and no output schema, the description is adequate but not outstanding. It tells the agent what the tool does but does not explain what a help response looks like, how the topic parameter affects the output, or provide any usage examples. The tool has 12 siblings, so a bit more context on which topics are most commonly needed could help, but the current description is minimally sufficient.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema describes the single parameter 'topic' with an enum of valid values and a default of 'overview', providing full coverage (100%). The description does not add additional meaning beyond the schema, but with 100% coverage, the baseline of 3 is appropriate. The description's mention of 'features, settings, and best practices' may hint at the content of the topics, but it's not explicit.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool provides comprehensive help about Gemini MCP features, settings, and best practices. It distinguishes it from sibling tools that perform specific actions like chat or image generation, making the purpose evident.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies use when users need help or information about the Gemini MCP suite, but it doesn't explicitly state when not to use it or compare to alternatives. Sibling tools handle specific tasks, so the need for guidance is there, but the purpose is clear enough that an agent might infer when to use it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
gemini_list_modelsList Gemini ModelsA
List available Gemini models and their descriptions
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| content | Yes | |
| success | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of disclosing behavioral traits. It simply states the tool lists models without mentioning return format, pagination, or whether it's read-only. For a simple list operation, this is a significant gap, though the operation is inherently safe.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, concise sentence that directly states the tool's function without fluff. It's front-loaded and efficient.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple list tool with no parameters and an output schema (not shown), the description adequately covers the core functionality. It doesn't elaborate on usage context, but given the simplicity, it's sufficient.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parametersтное schema is empty, so the description doesn't need to add parameter meaning. Baseline for 0 params is 4; the description correctly omits any param details.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description 'List available Gemini models and their descriptions' clearly states the tool's function with a specific verb ('list') and resource ('Gemini models'). It unambiguously distinguishes this tool from sibling tools like gemini_chat or gemini_prompt_assistant, which perform actions rather than enumeration.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. While its purpose is self-evident, it lacks any explicit context or exclusions, such as whether it should be used before invoking chat tools or whether it lists all models or only certain ones.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
gemini_prompt_assistantImage & Chart Prompt AssistantA
Get expert prompt templates and guidance for Gemini image generation. Covers photography (portraits, products, cinematic), chart/diagram design (9 professional design systems including FT, Bloomberg, Tufte, Du Bois), lighting, colour grading, lens simulation, and style aesthetics. For charts: use chart_design with a color_scheme to get a full professional design system prompt.
| Name | Required | Description | Default |
|---|---|---|---|
| emphasis | No | Design emphasis / audience priority | |
| use_case | No | Specific use case for template (photography request types) | |
| chart_type | No | Chart type for chart-specific guidelines | |
| color_scheme | No | Chart colour scheme / design system (for chart_design, optimize_chart, get_palette) | |
| request_type | Yes | Type of assistance needed | |
| current_prompt | No | Current prompt to optimize or troubleshoot | |
| desired_outcome | No | Description of what you want to achieve |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It clearly frames the tool as advice-giver ('Get expert prompt templates and guidance'), implying a read-only, non-destructive assistant. It does not disclose any hidden side effects or special behaviors, but for a guidance tool, this is minimal risk. No contradictions with annotations exist since none are present.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences, tightly packed with useful information. It front-loads the primary purpose, lists covered domains, and ends with a targeted usage note. Every sentence earns its place; no fluff or repetition.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With 7 parameters (5 enums) and no output schema, the description covers the core functionality and highlights the chart_design+color_scheme combination. It doesn't elaborate on every request_type, but the enum in the schema provides that list, and the description gives sufficient context for the most common branching scenario. It could mention that it also handles prompt optimization/troubleshooting, but the schema implies it via the request_type enum.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so baseline is 3. The description adds a valuable cross-parameter hint: combining chart_design (request_type) with color_scheme yields a professional design system prompt. This enriches understanding beyond the schema's isolated parameter descriptions. It does not explain each parameter in depth, but the schema already does that adequately.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it provides 'expert prompt templates and guidance for Gemini image generation' and lists specific areas (photography, charts, lighting, etc.). It distinguishes itself from siblings like generate_image by focusing on guidance rather than generation, and explicitly mentions chart_design for chart-specific needs.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description includes an explicit usage hint for charts: 'For charts: use chart_design with a color_scheme to get a full professional design system prompt.' It doesn't enumerate when not to use it or list alternatives, but this guidance covers a key use case. Context for other request types is implied through the enum in the schema.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
generate_imageGenerate Image with GeminiA
Generate an image using Google Gemini image models (Nano Banana Pro). Returns image with inline preview in Claude Desktop and saves full-resolution to disk. Default model: gemini-3-pro-image-preview.
| Name | Required | Description | Default |
|---|---|---|---|
| model | No | Gemini image model to use (default: gemini-3-pro-image-preview). Options: gemini-3-pro-image-preview, gemini-2.5-flash-image, nano-banana-pro-preview | |
| images | No | Optional reference images to guide generation | |
| prompt | Yes | Description of the image to generate | |
| imageSize | No | Resolution of the generated image (only for image-specific models) | |
| outputPath | No | Optional file path to save the generated image (e.g., ./output/image.png) | |
| use_search | No | Enable Google Search grounding for data-driven image generation. Use for: weather forecasts, current events, stock prices, sports scores, statistics. The model will search the web for real-time data to inform image generation. | |
| aspectRatio | No | Aspect ratio of the generated image | 1:1 |
| global_media_resolution | No | Global image quality setting for cost optimization (default: HIGH). LOW (280 tokens, 75% savings) - Simple tasks, bulk operations. MEDIUM (560 tokens, 50% savings) - PDFs/documents (OCR saturates at medium). HIGH (1120 tokens) - Best quality, detailed analysis. Can be overridden per-image using mediaResolution in images array. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It discloses key behaviors: returns inline preview in Claude Desktop, saves full-resolution to disk, and mentions the default model. It also explains the use_search grounding behavior. However, it does not mention potential side effects like file overwriting, cost implications, or rate limits, which would be more transparent.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise: two sentences that state the core function, the model family, the output behavior, and the default model. It is front-loaded with the primary action and avoids unnecessary fluff. Every sentence adds value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (8 parameters, no output schema, no annotations), the description is fairly complete. It covers the main purpose, default model, output behavior, and search grounding. However, it could mention that the tool can also edit images when provided with reference images (as implied by the images parameter and thoughtSignature), which would help agents understand its dual generation/editing capability.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents all parameters. The description adds value by explaining the default model and the use_search use cases (weather, current events, etc.). It also clarifies the global_media_resolution cost trade-offs, which is beyond the schema. However, it doesn't elaborate on the thoughtSignature parameter's role in conversational editing, which is partially covered in the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Generate an image using Google Gemini image models (Nano Banana Pro).' It specifies the action (generate), the resource (image), and the technology (Gemini image models). It also distinguishes from siblings like edit_image, generate_svg, and generate_video by focusing on image generation with Gemini.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context on when to use the tool (for generating images with Gemini) and mentions the default model. It also hints at usage for data-driven generation via use_search. However, it does not explicitly state when NOT to use it or mention alternatives like edit_image for editing existing images, which would be a stronger guideline.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
generate_landing_pageGenerate Landing PageA
Generate a complete, self-contained HTML landing page using Gemini. Returns inline preview with responsive viewport controls. No external dependencies; inline CSS and vanilla JS only. [MCP_RECOMMENDED_TIMEOUT_MS: 300000]
| Name | Required | Description | Default |
|---|---|---|---|
| brief | Yes | Description of the product/service and page goals | |
| model | No | Omit to use gemini-3.1-pro-preview. Other valid options: gemini-3-pro-preview, gemini-3-flash-preview. | |
| style | No | Visual design style | startup |
| sections | No | Sections to include (e.g. ["hero", "features", "pricing", "cta"]) | |
| outputPath | No | Optional file path to save the HTML (e.g. C:/dev/output/landing.html) | |
| companyName | No | Company or product name | |
| primaryColour | No | Primary brand colour (e.g. #3B82F6 or "deep blue") |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Since no annotations are provided, the description carries the full behavioral burden. It discloses that the output is an inline preview with responsive viewport controls, that the HTML has no external dependencies, and it includes a recommended timeout of 300000 ms. It doesn't cover side effects of saving a file or model differences, but the core behavior is well communicated.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is only three sentences plus a timeout metadata tag. Each sentence earns its place: purpose, preview behavior, and the no-dependency constraint. It is front-loaded with the core action. The timeout metadata feels slightly out-of-place but is useful for the agent.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a 7-parameter tool with no output schema, the description provides the most critical context: an HTML landing page is generated, a preview is returned, and no external dependencies are used. The inline preview covers the return behavior. It does not explain what outputPath does in detail, but the schema covers that parameter. Overall it is sufficiently complete for the agent to invoke successfully.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already describes 100% of parameters, so the description does not need to add much parameter-level detail. The parameter descriptions cover meanings and defaults. The tool description itself doesn't add significant parameter semantics beyond the schema, so a baseline score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool generates a complete, self-contained HTML landing page via Gemini. This is a specific verb and resource, and it distinguishes from sibling tools like generate_image, generate_svg, and generate_video. The addition of inline preview and responsive viewport controls further clarifies the output format.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context: use this to create a self-contained HTML landing page and preview it in the IDE. It doesn't explicitly name alternatives or state when-not-to-use, but the purpose is unambiguous enough for an agent to choose this over sibling generation tools. The dependency-free constraint also helps narrow expectations.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
generate_svgGenerate SVG GraphicA
Generate scalable vector graphics (SVG) using Gemini. Creates clean, production-ready SVG code for diagrams, illustrations, icons, and data visualizations. Returns inline preview with SVG viewer. [MCP_RECOMMENDED_TIMEOUT_MS: 240000]
| Name | Required | Description | Default |
|---|---|---|---|
| model | No | Omit to use gemini-3.1-pro-preview. Other valid options: gemini-3-pro-preview, gemini-3-flash-preview. | |
| style | No | Visual style: technical (diagrams), artistic (illustrations), minimal (simple), data-viz (charts) | technical |
| width | No | SVG width in pixels (default: 800) | |
| height | No | SVG height in pixels (default: 600) | |
| prompt | Yes | Description of the SVG graphic to generate | |
| outputPath | No | Optional file path to save the SVG (e.g. C:/output/diagram.svg) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Without annotations, the description carries the transparency burden. It mentions the inline preview and a recommended timeout, which gives operational insight. However, it does not disclose side effects like file writing when outputPath is provided, whether the operation is read-only, or any permission requirements. The generative nature implies creation, but this is not explicitly stated.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences plus a timeout note, with the primary action stated upfront. Every sentence adds value: the first defines purpose, the second describes output and preview, and the timeout note is practical. No filler or redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (6 parameters, no annotations, no output schema), the description is fairly complete. It covers what it generates, the output format, and a timeout recommendation. However, it omits details like error handling, whether outputPath is required for saving, and how to specify style constraints beyond schema enums. These gaps are minor for a generation tool but prevent a higher score.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so parameter descriptions already exist. The tool description adds contextual value by naming the types of graphics (diagrams, icons, etc.) but does not elaborate on parameter usage beyond what the schema provides. It meets the baseline for full schema coverage without adding significant new meaning.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool generates SVG graphics via Gemini, listing specific use cases (diagrams, illustrations, icons, data visualizations). This distinguishes it from sibling tools like generate_image (which likely produces raster images) and edit_image (which modifies existing images), making the purpose specific and unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for vector graphic creation but does not explicitly state when to prefer this over alternatives such as generate_image or when not to use it. It provides context (SVG, data visualization) but lacks direct guidance on tool selection or exclusion criteria.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
generate_videoGenerate VideoA
Generate videos using Google Veo 3.1 AI model. Creates realistic 4-8 second videos from text prompts with optional first-frame image and reference images for character/style consistency. Supports native audio generation. Processing time: 2-5 minutes for 1080p videos. Returns video file path with optional thumbnail and HTML preview player. ⚠️ IMPORTANT: Video generation is ASYNC and takes 2-5 minutes. The tool will poll for completion automatically.
| Name | Required | Description | Default |
|---|---|---|---|
| seed | No | Optional seed for deterministic output. Use the same seed with the same prompt for consistent results. | |
| model | No | Video generation model (default: veo-3.1-generate-preview) | veo-3.1-generate-preview |
| prompt | Yes | Detailed description of the video to generate. Be specific about actions, camera movements, lighting, and style. Example: "A close-up shot of a futuristic coffee machine brewing a glowing blue espresso, with steam rising dramatically. Cinematic lighting, 4K quality." | |
| outputPath | No | Optional custom output path for the video file (e.g., C:/videos/output.mp4). If not provided, saves to default output directory with timestamped filename. | |
| resolution | No | Video resolution. Higher resolutions take longer to generate and result in larger files. | 1080p |
| aspectRatio | No | Video aspect ratio: 16:9 (landscape) or 9:16 (portrait/vertical) | 16:9 |
| sampleCount | No | Number of video samples to generate (1-4). Each sample is a separate generation. | |
| generateAudio | No | Generate native synchronized audio effects and dialogue based on the prompt | |
| durationSeconds | No | Video duration in seconds — 4, 6, or 8. Other values in range are rounded to the nearest of those. | |
| firstFrameImage | No | Starting frame image for image-to-video generation. Provide via filePath (local file) or data+mimeType (base64). The video will animate from this image. Supports JPEG, PNG, WebP. | |
| referenceImages | No | Up to 3 reference images for character/style consistency. Each needs a referenceType ("asset" or "style") and an image. | |
| generateThumbnail | No | Extract thumbnail from video (requires ffmpeg installed). Thumbnail is saved alongside video. | |
| generateHTMLPlayer | No | Generate interactive HTML video player with preview and download options |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It discloses the async nature, processing time, and that it polls automatically, as well as dependencies like ffmpeg for thumbnails. It also implies mutations (creating files) but without explicit warnings, but this is covered by the nature of generation. It adds value beyond the schema by explaining behavior like automatic polling.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is relatively compact for a complex tool, with key information front-loaded (model, duration, inputs, audio), followed by a warning about async processing. It uses bullet points effectively. It could be more concise, but for the complexity it is well-structured and not verbose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the high schema coverage and descriptive schema (nested objects, enums, bounds), the description completes the picture by explaining output artifacts (file path, thumbnail, HTML player) and processing time. It does not explain return structure, but there's no output schema, and the description hints at what is returned. For a generation tool with no output schema, this is adequate.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already has 100% coverage with detailed descriptions for each parameter, including example prompts, resolution trade-offs, and image input alternatives. The description reinforces the overall purpose but does not add additional parameter-level semantics beyond what's in the schema. Since coverage is high, a baseline of 3 is appropriate, but the description's mention of output paths and thumbnail/HTML player adds slight context, hence a 4.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states that it generates videos using Google Veo 3.1, with specific details on duration, input types (text prompt, first-frame image, reference images), audio generation, and output artifacts (video file, thumbnail, HTML player). It distinguishes it from sibling image tools by emphasizing video generation and asynchronous processing.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It explains key usage context: asynchronous with 2-5 minute processing time, automatic polling, and supports optional inputs like first-frame and reference images. It does not explicitly mention when NOT to use it or alternatives, but the context is clear enough for an agent to decide, especially with sibling tools like generate_image.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
load_image_from_pathLoad Image from File PathA
Read a local image file and return it as base64-encoded data ready to pass to generate_image, edit_image, describe_image, or analyze_image tools. Supports JPEG, PNG, GIF, WebP, BMP.
| Name | Required | Description | Default |
|---|---|---|---|
| filePath | Yes | Absolute or relative path to the image file |
Output Schema
| Name | Required | Description |
|---|---|---|
| content | Yes | |
| success | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Since no annotations are provided, the description carries the full behavioral burden; it discloses the base64 return format and supported image types, which are useful facts. However, it doesn't mention error behavior, file size limits, or security/permission considerations, so transparency is adequate but not comprehensive.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences efficiently deliver the essential information: reads a local image, returns base64, names its consumers, and lists supported formats. There is no filler or redundant repetition of the schema.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a single-parameter tool with an output schema, the description covers the key behavioral context: input, output, and supported formats. It could mention potential failure conditions, but these are not critical for a defensive agent's selection and invocation of such a straightforward tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already fully describes filePath, so the baseline is 3. The description supplements it by emphasizing 'local image file' and listing supported formats, which adds mildly relevant context beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Read a local image file') and the resource being handled, with an explicit output type. It also differentiates itself from sibling tools by explaining the result is ready to feed into generate_image, edit_image, describe_image, or analyze_image.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly names the downstream tools that accept its output, giving strong context for when to use this tool. It doesn't state an explicit 'do not use when' condition, but for a focused loading utility, this is a minor gap.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
13 tool updates
v2.6.2- First observed
analyze_image - First observed
describe_image - First observed
edit_image - First observed
gemini_chat - First observed
gemini_deep_research - First observed
gemini_help - First observed
gemini_list_models - First observed
gemini_prompt_assistant - First observed
generate_image - First observed
generate_landing_page - First observed
generate_svg - First observed
generate_video - First observed
load_image_from_path
TDQS
Most tools are clearly distinct (help, list_models, chat, research, image generation/editing, video generation). However, describe_image and analyze_image overlap significantly—both analyze images and return text—with only subtle differences in default model and phrasing, which could cause misselection. Also, gemini_help overlaps with what an agent might expect from general documentation but is distinct enough.
Most tools follow a verb_noun pattern (gemini_list_models, generate_image, edit_image, generate_landing_page, generate_svg, generate_video), but some tools omit the 'gemini_' prefix (describe_image, analyze_image, load_image_from_path) creating minor inconsistency. The use of 'generate' for different output types is clear, but 'describe' vs 'analyze' could be more distinct. Patterns are mostly predictable.
With 13 tools, this server is well-scoped for a multimodal AI assistant covering chat, research, image, video, and text generation. Each tool has a clear purpose and covers distinct capabilities (help, models, prompting, chat, deep research, image in/out, editing, landing page, SVG, video). The count is appropriate without being excessive.
The tool surface covers the key workflows: image generation (generate_image), image editing (edit_image), image analysis (describe/analyze_image), local image loading (load_image_from_path), video generation (generate_video), text generation (generate_svg/landing_page), and interactive use (chat, deep_research). A clear lifecycle exists for image tasks (load→analyze→generate/edit). Missing features like image manipulation beyond editing or direct video editing are minor and likely out of scope.
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 Connectors
One MCP endpoint for Claude, GPT & Gemini: 100+ tools + no-code connectors + agent workers.
65+ AI tools as MCP: research, write, code, scrape, translate, RAG, agent memory, workflows
Turn Claude into a creative studio: DNA-locked characters, images, video, voiceover — 55 tools.
Creative workspace. Public MCP: outline previews for Codex and Claude Code; media in the web app.
11
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceOne MCP for developers — no tool tax, no context rot. 100+ tools including Brave, Google, Tavily, Context7, Excalidraw, AWS, Excel, Database, Playwright, Chrome DevTools, and more. Install once, access everything.23GPL 3.0
- AlicenseAqualityCmaintenanceIntegrates Google Gemini 3.1 with Claude Code to provide web search, large codebase analysis, multimodal image understanding, and creative brainstorming, leveraging Gemini's 1M token context and Google Search grounding.563142MIT
- AlicenseNot gradedqualityBmaintenanceA remote MCP connector deployed as a Cloudflare Worker that gives Claude access to Google Gemini models, enabling image generation/editing, model auditing, and large context digesting.70MIT
- AlicenseAqualityCmaintenanceEnables Claude to analyze codebases, search the web, process images, and brainstorm ideas using Gemini's massive context window.95836MIT
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/houtini-ai/gemini-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server



