Gemini MCP Server
Provides tools for interacting with Google's Gemini API, enabling chat, multimodal analysis, deep research, file management, and various generation tasks.
Allows analysis of public YouTube videos by URL, extracting content for processing via Gemini's multimodal capabilities.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Gemini MCP Serveranalyze this YouTube video: https://youtube.com/watch?v=dQw4w9WgXcQ"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Gemini MCP Server
A Model Context Protocol (MCP) server providing 23 tools for Google's Gemini API -- chat, multimodal analysis, deep research, file management, YouTube analysis, and more.
Built with @google/genai SDK (v1.0.0+).
Features
Chat with Gemini models (single-turn, multi-turn, with tool modes)
Analyze images, audio, video, PDFs, YouTube videos, and URLs
Files API with auto-switching: inline for small files (<20MB), upload for large (up to 2GB)
Deep research agent with background polling and push notifications (Termux)
Structured JSON output, embeddings, code execution, translation, summarization
Google Search grounding and URL context
Thinking mode enabled by default (budget: 65535 tokens)
High media resolution by default
Related MCP server: Gemini Chat MCP
Prerequisites
Node.js 18+
Quick Install
git clone https://github.com/salviz/gemini-mcp-server.git
cd gemini-mcp-server
npm installRegister with Claude Code
CLI:
claude mcp add gemini -- node /path/to/gemini-mcp-server/index.jsOr add to your MCP config (~/.claude/claude_desktop_config.json or .mcp.json):
{
"mcpServers": {
"gemini": {
"type": "stdio",
"command": "node",
"args": ["/path/to/gemini-mcp-server/index.js"],
"env": {
"GEMINI_API_KEY": "your-api-key"
}
}
}
}Environment Variables
Variable | Required | Description |
| Yes | Your Google Gemini API key |
Tools (23)
Chat & Generation (6)
Tool | Description |
| Send a prompt with optional search grounding and URL context |
| Multi-turn conversation with message history |
| Chat with mode switching: |
| Search-grounded generation with source citations |
| Generate JSON output matching a provided schema |
| Analyze one or more URLs using Gemini's URL context tool |
Multimodal Analysis (6)
Tool | Description |
| Analyze an image file with Gemini Vision (JPG, PNG, GIF, WebP, BMP, SVG) |
| Transcribe, summarize, or describe audio (MP3, WAV, OGG, FLAC, AAC, M4A, Opus) |
| Analyze a video file; auto-uploads large files via Files API (MP4, AVI, MOV, MKV, WebM) |
| Analyze a PDF document (up to 2GB via Files API) |
| Analyze a public YouTube video by URL (no download needed) |
| Analyze content from an HTTP/HTTPS URL or GCS URI ( |
Deep Research (2)
Tool | Description |
| Start a deep research task; sends push notification on completion |
| Check status of a running deep research task by interaction ID |
Files API (3)
Tool | Description |
| Upload a file to Gemini (up to 2GB, retained 48 hours) |
| List all uploaded files with metadata |
| Delete an uploaded file by name |
Utilities (6)
Tool | Description |
| List available Gemini models with capabilities and token limits |
| Count tokens in text using a model's tokenizer |
| Generate text embeddings (default: |
| Execute Python code via Gemini's built-in sandbox |
| Summarize text with configurable style (brief, detailed, bullet-points) |
| Translate text to any language with optional model override |
Model Selection
Default model: gemini-3.1-pro-preview. Every tool accepts an optional model parameter.
Model | Best For |
| Default. Best quality for most tasks |
| Faster responses, lower cost |
| Text embeddings (used by |
| Deep research agent (used internally) |
Files API & Large File Handling
The server automatically handles file size:
<= 20MB: Sent inline as base64 (fast, no upload step)
> 20MB up to 2GB: Uploaded via Gemini Files API, then referenced by URI
YouTube URLs: Passed directly via
fileData.fileUri(no download)HTTP/HTTPS URLs: Passed via
createPartFromUri(up to 100MB)GCS URIs (
gs://): Passed viafileData.fileUri
Uploaded files are retained for 48 hours. Use gemini_list_files and gemini_delete_file to manage them.
Deep Research
The gemini_deep_research tool uses Gemini's Interactions API with the deep-research-pro-preview-12-2025 agent:
Starts research in background mode
Polls for 50 seconds in case it finishes quickly
If still running, starts background polling (every 30s, up to 30 minutes)
Sends a push notification via
termux-notificationwhen completeSaves full results to
~/.cache/deep_research_*.txt
Use gemini_check_research to manually poll at any time.
Project Structure
gemini-mcp-server/
index.js # Server entry point
tools/
shared.js # Shared config, AI client, extractText helper
chat.js # 17 tools: chat, analysis, research, files, YouTube
utility.js # 6 tools: models, tokens, embed, code, summarize, translate
package.jsonSecurity
API key from environment only -- never hardcoded in source
File paths validated -- absolute paths required, existence checked before reading
Stdio transport -- no network server exposed
No data logged or stored -- prompts and responses are not persisted
Dependencies
Package | Version | Purpose |
| ^1.0.0 | MCP server framework |
| ^1.0.0 | Google Gemini AI SDK |
| ^3.24.0 | Input schema validation |
License
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- 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/salviz/gemini-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server