MCP server exposing Gemini Deep Research (Interactions API) tools
Project description
Gemini Deep Research MCP
An MCP server that exposes Gemini's Deep Research Agent for comprehensive web research.
Quick Start
# Recommended (zero-install)
uvx gemini-deep-research-mcp
# Or install globally
pip install gemini-deep-research-mcp
gemini-deep-research-mcp
Requires: uv for uvx method
One-Click Install
| IDE | Install |
|---|---|
| Cursor | |
| VS Code | |
| VS Code Insiders |
Note: After clicking, replace
your-api-keywith your Gemini API key. VS Code requires version 1.101+.
Installation Methods
Using uvx (Recommended)
Requires uv.
uvx gemini-deep-research-mcp
VS Code config
{
"servers": {
"gemini-deep-research": {
"command": "uvx",
"args": ["gemini-deep-research-mcp"],
"env": {
"GEMINI_API_KEY": "your-api-key"
}
}
}
}
Claude Desktop config
{
"mcpServers": {
"gemini-deep-research": {
"command": "uvx",
"args": ["gemini-deep-research-mcp"],
"env": {
"GEMINI_API_KEY": "your-api-key"
}
}
}
}
Windsurf config
Add to ~/.codeium/windsurf/mcp_config.json (macOS/Linux) or %USERPROFILE%\.codeium\windsurf\mcp_config.json (Windows):
{
"mcpServers": {
"gemini-deep-research": {
"command": "uvx",
"args": ["gemini-deep-research-mcp"],
"env": {
"GEMINI_API_KEY": "your-api-key"
}
}
}
}
Cline config
{
"mcpServers": {
"gemini-deep-research": {
"command": "uvx",
"args": ["gemini-deep-research-mcp"],
"env": {
"GEMINI_API_KEY": "your-api-key"
}
}
}
}
Claude Code config
Add to ~/.claude/settings.json:
{
"mcpServers": {
"gemini-deep-research": {
"command": "uvx",
"args": ["gemini-deep-research-mcp"],
"env": {
"GEMINI_API_KEY": "your-api-key"
}
}
}
}
Codex config
Add to ~/.codex/config.toml:
[mcp_servers.gemini-deep-research]
command = "uvx"
args = ["gemini-deep-research-mcp"]
[mcp_servers.gemini-deep-research.env]
GEMINI_API_KEY = "your-api-key"
Cursor config
Add to ~/.cursor/mcp.json:
{
"mcpServers": {
"gemini-deep-research": {
"command": "uvx",
"args": ["gemini-deep-research-mcp"],
"env": {
"GEMINI_API_KEY": "your-api-key"
}
}
}
}
Antigravity config
Add to your Antigravity mcp_config.json:
{
"gemini-deep-research": {
"command": "uvx",
"args": ["gemini-deep-research-mcp"],
"env": {
"GEMINI_API_KEY": "your-api-key"
}
}
}
Using pip
pip install gemini-deep-research-mcp
VS Code config
{
"servers": {
"gemini-deep-research": {
"command": "gemini-deep-research-mcp",
"env": {
"GEMINI_API_KEY": "your-api-key"
}
}
}
}
Claude Desktop config
{
"mcpServers": {
"gemini-deep-research": {
"command": "gemini-deep-research-mcp",
"env": {
"GEMINI_API_KEY": "your-api-key"
}
}
}
}
Windsurf config
Add to ~/.codeium/windsurf/mcp_config.json (macOS/Linux) or %USERPROFILE%\.codeium\windsurf\mcp_config.json (Windows):
{
"mcpServers": {
"gemini-deep-research": {
"command": "gemini-deep-research-mcp",
"env": {
"GEMINI_API_KEY": "your-api-key"
}
}
}
}
Cline config
{
"mcpServers": {
"gemini-deep-research": {
"command": "gemini-deep-research-mcp",
"env": {
"GEMINI_API_KEY": "your-api-key"
}
}
}
}
Claude Code config
Add to ~/.claude/settings.json:
{
"mcpServers": {
"gemini-deep-research": {
"command": "gemini-deep-research-mcp",
"env": {
"GEMINI_API_KEY": "your-api-key"
}
}
}
}
Codex config
Add to ~/.codex/config.toml:
[mcp_servers.gemini-deep-research]
command = "gemini-deep-research-mcp"
[mcp_servers.gemini-deep-research.env]
GEMINI_API_KEY = "your-api-key"
Cursor config
Add to ~/.cursor/mcp.json:
{
"mcpServers": {
"gemini-deep-research": {
"command": "gemini-deep-research-mcp",
"env": {
"GEMINI_API_KEY": "your-api-key"
}
}
}
}
Antigravity config
Add to your Antigravity mcp_config.json:
{
"gemini-deep-research": {
"command": "gemini-deep-research-mcp",
"env": {
"GEMINI_API_KEY": "your-api-key"
}
}
}
Prerequisites
Install uv (required for uvx method)
# macOS/Linux
curl -LsSf https://astral.sh/uv/install.sh | sh
# Windows (PowerShell)
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
Tool: gemini_deep_research
Conducts comprehensive web research using Gemini's Deep Research Agent. Blocks until research completes (typically 10-20 minutes).
When to use:
- Complex topics requiring multi-source analysis
- Synthesized information from the web
- Fact-checking and cross-referencing
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
prompt |
string | ✓ | — | Your research question or topic |
include_citations |
boolean | true |
Include resolved source URLs |
| Output | Description |
|---|---|
status |
completed, failed, or cancelled |
report_text |
Synthesized research report |
Configuration
| Variable | Required | Default | Description |
|---|---|---|---|
GEMINI_API_KEY |
✓ | — | Your Gemini API key |
GEMINI_DEEP_RESEARCH_AGENT |
deep-research-pro-preview-12-2025 |
Model to use |
Links
License
MIT
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file gemini_deep_research_mcp-0.1.3.tar.gz.
File metadata
- Download URL: gemini_deep_research_mcp-0.1.3.tar.gz
- Upload date:
- Size: 12.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
518f47d772416173f5d6932d35c6a15279e15dfb6dd3b375dadbb32ca1bb3587
|
|
| MD5 |
a38635a0aee80fea93ad3cef2504e970
|
|
| BLAKE2b-256 |
f1eae8480dc9ac3eef7f7a34713efde847e4ccb750ef9a3a0fb53d08e1dca818
|
Provenance
The following attestation bundles were made for gemini_deep_research_mcp-0.1.3.tar.gz:
Publisher:
publish.yml on bharatvansh/gemini-deep-research-mcp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
gemini_deep_research_mcp-0.1.3.tar.gz -
Subject digest:
518f47d772416173f5d6932d35c6a15279e15dfb6dd3b375dadbb32ca1bb3587 - Sigstore transparency entry: 914120692
- Sigstore integration time:
-
Permalink:
bharatvansh/gemini-deep-research-mcp@1342d271d0bb794d478c77a20391e3bbd818d544 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/bharatvansh
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@1342d271d0bb794d478c77a20391e3bbd818d544 -
Trigger Event:
release
-
Statement type:
File details
Details for the file gemini_deep_research_mcp-0.1.3-py3-none-any.whl.
File metadata
- Download URL: gemini_deep_research_mcp-0.1.3-py3-none-any.whl
- Upload date:
- Size: 10.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a28294b3da164ba8de1a7b7d522e013efab10e5e3cdd052eb1b456a164626670
|
|
| MD5 |
2c9c397e41e1f1a3c3c6a789f88b11e0
|
|
| BLAKE2b-256 |
ee28dc59e90691a538c6399201c5598ab70c7c85b75706a1e0576d749539a9ea
|
Provenance
The following attestation bundles were made for gemini_deep_research_mcp-0.1.3-py3-none-any.whl:
Publisher:
publish.yml on bharatvansh/gemini-deep-research-mcp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
gemini_deep_research_mcp-0.1.3-py3-none-any.whl -
Subject digest:
a28294b3da164ba8de1a7b7d522e013efab10e5e3cdd052eb1b456a164626670 - Sigstore transparency entry: 914120773
- Sigstore integration time:
-
Permalink:
bharatvansh/gemini-deep-research-mcp@1342d271d0bb794d478c77a20391e3bbd818d544 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/bharatvansh
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@1342d271d0bb794d478c77a20391e3bbd818d544 -
Trigger Event:
release
-
Statement type: