gemini-deep-research-mcp 0.1.1__py3-none-any.whl → 0.1.3__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -54,7 +54,7 @@ def _require_nonempty(value: Optional[str], *, field: str) -> str:
54
54
  _DEFAULT_TIMEOUT_SECONDS = 1200.0
55
55
 
56
56
  _DEEP_RESEARCH_DESCRIPTION = """
57
- Conduct comprehensive web research using Gemini's Deep Research Agent.
57
+ Conduct comprehensive web research using a Deep Research Agent.
58
58
 
59
59
  When to use this tool:
60
60
  - Researching complex topics requiring multi-source analysis
@@ -0,0 +1,417 @@
1
+ Metadata-Version: 2.4
2
+ Name: gemini-deep-research-mcp
3
+ Version: 0.1.3
4
+ Summary: MCP server exposing Gemini Deep Research (Interactions API) tools
5
+ Author-email: Ayush <ayusin439@gmail.com>
6
+ License: MIT
7
+ Project-URL: Homepage, https://github.com/bharatvansh/gemini-deep-research-mcp
8
+ Project-URL: Repository, https://github.com/bharatvansh/gemini-deep-research-mcp
9
+ Project-URL: Issues, https://github.com/bharatvansh/gemini-deep-research-mcp/issues
10
+ Keywords: mcp,gemini,deep-research,ai,google,model-context-protocol,research,agent
11
+ Classifier: Development Status :: 4 - Beta
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: License :: OSI Approved :: MIT License
14
+ Classifier: Operating System :: OS Independent
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Programming Language :: Python :: 3.10
17
+ Classifier: Programming Language :: Python :: 3.11
18
+ Classifier: Programming Language :: Python :: 3.12
19
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
20
+ Requires-Python: >=3.10
21
+ Description-Content-Type: text/markdown
22
+ Requires-Dist: mcp>=1.2.0
23
+ Requires-Dist: google-genai>=0.6.0
24
+ Requires-Dist: python-dotenv>=1.0.1
25
+ Requires-Dist: httpx>=0.27.0
26
+ Provides-Extra: dev
27
+ Requires-Dist: pytest>=8.0.0; extra == "dev"
28
+
29
+ # Gemini Deep Research MCP
30
+
31
+ [![PyPI version](https://img.shields.io/pypi/v/gemini-deep-research-mcp)](https://pypi.org/project/gemini-deep-research-mcp/)
32
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
33
+
34
+ An MCP server that exposes Gemini's **Deep Research Agent** for comprehensive web research.
35
+
36
+ ## Quick Start
37
+
38
+ ```bash
39
+ # Recommended (zero-install)
40
+ uvx gemini-deep-research-mcp
41
+
42
+ # Or install globally
43
+ pip install gemini-deep-research-mcp
44
+ gemini-deep-research-mcp
45
+ ```
46
+
47
+ > **Requires:** [uv](https://docs.astral.sh/uv/) for uvx method
48
+
49
+ ## One-Click Install
50
+
51
+ | IDE | Install |
52
+ |-----|---------|
53
+ | **Cursor** | [![Install in Cursor](https://img.shields.io/badge/Install-Cursor-blue?logo=cursor)](https://cursor.com/en/install-mcp?name=gemini-deep-research&config=eyJjb21tYW5kIjoidXZ4IiwiYXJncyI6WyJnZW1pbmktZGVlcC1yZXNlYXJjaC1tY3AiXSwiZW52Ijp7IkdFTUlOSV9BUElfS0VZIjoieW91ci1hcGkta2V5In19) |
54
+ | **VS Code** | [![Install in VS Code](https://img.shields.io/badge/Install-VS%20Code-007ACC?logo=visualstudiocode)](https://insiders.vscode.dev/redirect/mcp/install?name=gemini-deep-research&config=%7B%22command%22%3A%22uvx%22%2C%22args%22%3A%5B%22gemini-deep-research-mcp%22%5D%2C%22env%22%3A%7B%22GEMINI_API_KEY%22%3A%22your-api-key%22%7D%7D) |
55
+ | **VS Code Insiders** | [![Install in VS Code Insiders](https://img.shields.io/badge/Install-VS%20Code%20Insiders-24bfa5?logo=visualstudiocode)](https://insiders.vscode.dev/redirect/mcp/install?name=gemini-deep-research&config=%7B%22command%22%3A%22uvx%22%2C%22args%22%3A%5B%22gemini-deep-research-mcp%22%5D%2C%22env%22%3A%7B%22GEMINI_API_KEY%22%3A%22your-api-key%22%7D%7D&quality=insiders) |
56
+
57
+ > **Note:** After clicking, replace `your-api-key` with your [Gemini API key](https://aistudio.google.com/apikey). VS Code requires version 1.101+.
58
+
59
+ ---
60
+
61
+ ## Installation Methods
62
+
63
+ ### Using uvx (Recommended)
64
+
65
+ Requires [uv](https://docs.astral.sh/uv/).
66
+
67
+ ```bash
68
+ uvx gemini-deep-research-mcp
69
+ ```
70
+
71
+ <details>
72
+ <summary><strong>VS Code config</strong></summary>
73
+
74
+ ```json
75
+ {
76
+ "servers": {
77
+ "gemini-deep-research": {
78
+ "command": "uvx",
79
+ "args": ["gemini-deep-research-mcp"],
80
+ "env": {
81
+ "GEMINI_API_KEY": "your-api-key"
82
+ }
83
+ }
84
+ }
85
+ }
86
+ ```
87
+ </details>
88
+
89
+ <details>
90
+ <summary><strong>Claude Desktop config</strong></summary>
91
+
92
+ ```json
93
+ {
94
+ "mcpServers": {
95
+ "gemini-deep-research": {
96
+ "command": "uvx",
97
+ "args": ["gemini-deep-research-mcp"],
98
+ "env": {
99
+ "GEMINI_API_KEY": "your-api-key"
100
+ }
101
+ }
102
+ }
103
+ }
104
+ ```
105
+ </details>
106
+
107
+ <details>
108
+ <summary><strong>Windsurf config</strong></summary>
109
+
110
+ Add to `~/.codeium/windsurf/mcp_config.json` (macOS/Linux) or `%USERPROFILE%\.codeium\windsurf\mcp_config.json` (Windows):
111
+
112
+ ```json
113
+ {
114
+ "mcpServers": {
115
+ "gemini-deep-research": {
116
+ "command": "uvx",
117
+ "args": ["gemini-deep-research-mcp"],
118
+ "env": {
119
+ "GEMINI_API_KEY": "your-api-key"
120
+ }
121
+ }
122
+ }
123
+ }
124
+ ```
125
+ </details>
126
+
127
+ <details>
128
+ <summary><strong>Cline config</strong></summary>
129
+
130
+ ```json
131
+ {
132
+ "mcpServers": {
133
+ "gemini-deep-research": {
134
+ "command": "uvx",
135
+ "args": ["gemini-deep-research-mcp"],
136
+ "env": {
137
+ "GEMINI_API_KEY": "your-api-key"
138
+ }
139
+ }
140
+ }
141
+ }
142
+ ```
143
+ </details>
144
+
145
+ <details>
146
+ <summary><strong>Claude Code config</strong></summary>
147
+
148
+ Add to `~/.claude/settings.json`:
149
+
150
+ ```json
151
+ {
152
+ "mcpServers": {
153
+ "gemini-deep-research": {
154
+ "command": "uvx",
155
+ "args": ["gemini-deep-research-mcp"],
156
+ "env": {
157
+ "GEMINI_API_KEY": "your-api-key"
158
+ }
159
+ }
160
+ }
161
+ }
162
+ ```
163
+ </details>
164
+
165
+ <details>
166
+ <summary><strong>Codex config</strong></summary>
167
+
168
+ Add to `~/.codex/config.toml`:
169
+
170
+ ```toml
171
+ [mcp_servers.gemini-deep-research]
172
+ command = "uvx"
173
+ args = ["gemini-deep-research-mcp"]
174
+
175
+ [mcp_servers.gemini-deep-research.env]
176
+ GEMINI_API_KEY = "your-api-key"
177
+ ```
178
+ </details>
179
+
180
+ <details>
181
+ <summary><strong>Cursor config</strong></summary>
182
+
183
+ Add to `~/.cursor/mcp.json`:
184
+
185
+ ```json
186
+ {
187
+ "mcpServers": {
188
+ "gemini-deep-research": {
189
+ "command": "uvx",
190
+ "args": ["gemini-deep-research-mcp"],
191
+ "env": {
192
+ "GEMINI_API_KEY": "your-api-key"
193
+ }
194
+ }
195
+ }
196
+ }
197
+ ```
198
+ </details>
199
+
200
+ <details>
201
+ <summary><strong>Antigravity config</strong></summary>
202
+
203
+ Add to your Antigravity `mcp_config.json`:
204
+
205
+ ```json
206
+ {
207
+ "gemini-deep-research": {
208
+ "command": "uvx",
209
+ "args": ["gemini-deep-research-mcp"],
210
+ "env": {
211
+ "GEMINI_API_KEY": "your-api-key"
212
+ }
213
+ }
214
+ }
215
+ ```
216
+ </details>
217
+
218
+ ---
219
+
220
+ ### Using pip
221
+
222
+ ```bash
223
+ pip install gemini-deep-research-mcp
224
+ ```
225
+
226
+ <details>
227
+ <summary><strong>VS Code config</strong></summary>
228
+
229
+ ```json
230
+ {
231
+ "servers": {
232
+ "gemini-deep-research": {
233
+ "command": "gemini-deep-research-mcp",
234
+ "env": {
235
+ "GEMINI_API_KEY": "your-api-key"
236
+ }
237
+ }
238
+ }
239
+ }
240
+ ```
241
+ </details>
242
+
243
+ <details>
244
+ <summary><strong>Claude Desktop config</strong></summary>
245
+
246
+ ```json
247
+ {
248
+ "mcpServers": {
249
+ "gemini-deep-research": {
250
+ "command": "gemini-deep-research-mcp",
251
+ "env": {
252
+ "GEMINI_API_KEY": "your-api-key"
253
+ }
254
+ }
255
+ }
256
+ }
257
+ ```
258
+ </details>
259
+
260
+ <details>
261
+ <summary><strong>Windsurf config</strong></summary>
262
+
263
+ Add to `~/.codeium/windsurf/mcp_config.json` (macOS/Linux) or `%USERPROFILE%\.codeium\windsurf\mcp_config.json` (Windows):
264
+
265
+ ```json
266
+ {
267
+ "mcpServers": {
268
+ "gemini-deep-research": {
269
+ "command": "gemini-deep-research-mcp",
270
+ "env": {
271
+ "GEMINI_API_KEY": "your-api-key"
272
+ }
273
+ }
274
+ }
275
+ }
276
+ ```
277
+ </details>
278
+
279
+ <details>
280
+ <summary><strong>Cline config</strong></summary>
281
+
282
+ ```json
283
+ {
284
+ "mcpServers": {
285
+ "gemini-deep-research": {
286
+ "command": "gemini-deep-research-mcp",
287
+ "env": {
288
+ "GEMINI_API_KEY": "your-api-key"
289
+ }
290
+ }
291
+ }
292
+ }
293
+ ```
294
+ </details>
295
+
296
+ <details>
297
+ <summary><strong>Claude Code config</strong></summary>
298
+
299
+ Add to `~/.claude/settings.json`:
300
+
301
+ ```json
302
+ {
303
+ "mcpServers": {
304
+ "gemini-deep-research": {
305
+ "command": "gemini-deep-research-mcp",
306
+ "env": {
307
+ "GEMINI_API_KEY": "your-api-key"
308
+ }
309
+ }
310
+ }
311
+ }
312
+ ```
313
+ </details>
314
+
315
+ <details>
316
+ <summary><strong>Codex config</strong></summary>
317
+
318
+ Add to `~/.codex/config.toml`:
319
+
320
+ ```toml
321
+ [mcp_servers.gemini-deep-research]
322
+ command = "gemini-deep-research-mcp"
323
+
324
+ [mcp_servers.gemini-deep-research.env]
325
+ GEMINI_API_KEY = "your-api-key"
326
+ ```
327
+ </details>
328
+
329
+ <details>
330
+ <summary><strong>Cursor config</strong></summary>
331
+
332
+ Add to `~/.cursor/mcp.json`:
333
+
334
+ ```json
335
+ {
336
+ "mcpServers": {
337
+ "gemini-deep-research": {
338
+ "command": "gemini-deep-research-mcp",
339
+ "env": {
340
+ "GEMINI_API_KEY": "your-api-key"
341
+ }
342
+ }
343
+ }
344
+ }
345
+ ```
346
+ </details>
347
+
348
+ <details>
349
+ <summary><strong>Antigravity config</strong></summary>
350
+
351
+ Add to your Antigravity `mcp_config.json`:
352
+
353
+ ```json
354
+ {
355
+ "gemini-deep-research": {
356
+ "command": "gemini-deep-research-mcp",
357
+ "env": {
358
+ "GEMINI_API_KEY": "your-api-key"
359
+ }
360
+ }
361
+ }
362
+ ```
363
+ </details>
364
+
365
+ ---
366
+
367
+ ## Prerequisites
368
+
369
+ <details>
370
+ <summary><strong>Install uv (required for uvx method)</strong></summary>
371
+
372
+ ```bash
373
+ # macOS/Linux
374
+ curl -LsSf https://astral.sh/uv/install.sh | sh
375
+
376
+ # Windows (PowerShell)
377
+ powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
378
+ ```
379
+ </details>
380
+
381
+ ---
382
+
383
+ ## Tool: `gemini_deep_research`
384
+
385
+ Conducts comprehensive web research using Gemini's Deep Research Agent. Blocks until research completes (typically 10-20 minutes).
386
+
387
+ **When to use:**
388
+ - Complex topics requiring multi-source analysis
389
+ - Synthesized information from the web
390
+ - Fact-checking and cross-referencing
391
+
392
+ | Parameter | Type | Required | Default | Description |
393
+ |-----------|------|----------|---------|-------------|
394
+ | `prompt` | string | ✓ | — | Your research question or topic |
395
+ | `include_citations` | boolean | | `true` | Include resolved source URLs |
396
+
397
+ | Output | Description |
398
+ |--------|-------------|
399
+ | `status` | `completed`, `failed`, or `cancelled` |
400
+ | `report_text` | Synthesized research report |
401
+
402
+ ## Configuration
403
+
404
+ | Variable | Required | Default | Description |
405
+ |----------|----------|---------|-------------|
406
+ | `GEMINI_API_KEY` | ✓ | — | Your [Gemini API key](https://aistudio.google.com/apikey) |
407
+ | `GEMINI_DEEP_RESEARCH_AGENT` | | `deep-research-pro-preview-12-2025` | Model to use |
408
+
409
+ ## Links
410
+
411
+ - 📦 [npm Package](https://www.npmjs.com/package/@bharatvansh/gemini-deep-research-mcp)
412
+ - 🔧 [GitHub Repository](https://github.com/bharatvansh/gemini-deep-research-mcp)
413
+ - 🔑 [Get Gemini API Key](https://aistudio.google.com/apikey)
414
+
415
+ ## License
416
+
417
+ MIT
@@ -4,9 +4,9 @@ gemini_deep_research_mcp/config.py,sha256=7Cbk8EnW7VhaqkVwoX4sW2jekccQRdLraM89Lo
4
4
  gemini_deep_research_mcp/extract.py,sha256=lBFB2GfpHdPQXRszV6yulfSTa5cU3ApwU0KwwGg3450,2300
5
5
  gemini_deep_research_mcp/gemini.py,sha256=-4wptf99qVcukl0vsohsQQDBwMPq-B7LzZHqjpPZSqg,1572
6
6
  gemini_deep_research_mcp/resolve.py,sha256=LmSuTGOe1-qjToKdQL6pcpNlzoMQwn43_uzX1KSQvOo,3105
7
- gemini_deep_research_mcp/server.py,sha256=lAolJPB-fV4oN9W0Ldq4VQYkXt86Zxd3SVInwT3QsNk,3991
8
- gemini_deep_research_mcp-0.1.1.dist-info/METADATA,sha256=vThBjNYnfR5iNanKFrA1ycVh5oUuQ_I4o4jFmIo7fM4,5659
9
- gemini_deep_research_mcp-0.1.1.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
10
- gemini_deep_research_mcp-0.1.1.dist-info/entry_points.txt,sha256=nE5DP4kZ2RG5LB1Ied-hykIRmBei2GJw0wy_PijepRE,82
11
- gemini_deep_research_mcp-0.1.1.dist-info/top_level.txt,sha256=sk90gOv-N7MHdyHhJE6N-fLVHrtFPfme8m1opjwXoMM,25
12
- gemini_deep_research_mcp-0.1.1.dist-info/RECORD,,
7
+ gemini_deep_research_mcp/server.py,sha256=scxUHsHEzsmJIUkUqV-orEeHU9MCpAYNHZx6ehCjrM0,3984
8
+ gemini_deep_research_mcp-0.1.3.dist-info/METADATA,sha256=2pmmvQ0bhDlK-FhDtN9rf7hKAfN-RxJFBxwT9MDHUjU,9585
9
+ gemini_deep_research_mcp-0.1.3.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
10
+ gemini_deep_research_mcp-0.1.3.dist-info/entry_points.txt,sha256=nE5DP4kZ2RG5LB1Ied-hykIRmBei2GJw0wy_PijepRE,82
11
+ gemini_deep_research_mcp-0.1.3.dist-info/top_level.txt,sha256=sk90gOv-N7MHdyHhJE6N-fLVHrtFPfme8m1opjwXoMM,25
12
+ gemini_deep_research_mcp-0.1.3.dist-info/RECORD,,
@@ -1,236 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: gemini-deep-research-mcp
3
- Version: 0.1.1
4
- Summary: MCP server exposing Gemini Deep Research (Interactions API) tools
5
- Author-email: Ayush <ayusin439@gmail.com>
6
- License: MIT
7
- Project-URL: Homepage, https://github.com/bharatvansh/gemini-deep-research-mcp
8
- Project-URL: Repository, https://github.com/bharatvansh/gemini-deep-research-mcp
9
- Project-URL: Issues, https://github.com/bharatvansh/gemini-deep-research-mcp/issues
10
- Keywords: mcp,gemini,deep-research,ai,google,model-context-protocol,research,agent
11
- Classifier: Development Status :: 4 - Beta
12
- Classifier: Intended Audience :: Developers
13
- Classifier: License :: OSI Approved :: MIT License
14
- Classifier: Operating System :: OS Independent
15
- Classifier: Programming Language :: Python :: 3
16
- Classifier: Programming Language :: Python :: 3.10
17
- Classifier: Programming Language :: Python :: 3.11
18
- Classifier: Programming Language :: Python :: 3.12
19
- Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
20
- Requires-Python: >=3.10
21
- Description-Content-Type: text/markdown
22
- Requires-Dist: mcp>=1.2.0
23
- Requires-Dist: google-genai>=0.6.0
24
- Requires-Dist: python-dotenv>=1.0.1
25
- Requires-Dist: httpx>=0.27.0
26
- Provides-Extra: dev
27
- Requires-Dist: pytest>=8.0.0; extra == "dev"
28
-
29
- # Gemini Deep Research MCP
30
-
31
- [![PyPI version](https://img.shields.io/pypi/v/gemini-deep-research-mcp)](https://pypi.org/project/gemini-deep-research-mcp/)
32
- [![npm version](https://img.shields.io/npm/v/gemini-deep-research-mcp)](https://www.npmjs.com/package/gemini-deep-research-mcp)
33
- [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
34
-
35
- An MCP server that exposes Gemini's **Deep Research Agent** for comprehensive web research.
36
-
37
- ## One-Click Install
38
-
39
- ### Cursor
40
-
41
- [![Install MCP Server](https://cursor.com/deeplink/mcp-install-dark.svg)](https://cursor.com/install-mcp?name=gemini-deep-research&config=eyJjb21tYW5kIjogInV2eCIsICJhcmdzIjogWyJnZW1pbmktZGVlcC1yZXNlYXJjaC1tY3AiXSwgImVudiI6IHsiR0VNSU5JX0FQSV9LRVkiOiAieW91ci1hcGkta2V5In19)
42
-
43
- Click the button, then replace `your-api-key` with your [Gemini API key](https://aistudio.google.com/apikey).
44
-
45
- ---
46
-
47
- ## Installation Methods
48
-
49
- ### Using npx (Node.js)
50
-
51
- Requires [Node.js](https://nodejs.org/) 16+ and [uv](https://docs.astral.sh/uv/).
52
-
53
- ```bash
54
- npx gemini-deep-research-mcp
55
- ```
56
-
57
- <details>
58
- <summary><strong>VS Code config</strong></summary>
59
-
60
- ```json
61
- {
62
- "servers": {
63
- "gemini-deep-research": {
64
- "command": "npx",
65
- "args": ["-y", "gemini-deep-research-mcp"],
66
- "env": {
67
- "GEMINI_API_KEY": "your-api-key"
68
- }
69
- }
70
- }
71
- }
72
- ```
73
- </details>
74
-
75
- <details>
76
- <summary><strong>Claude Desktop config</strong></summary>
77
-
78
- ```json
79
- {
80
- "mcpServers": {
81
- "gemini-deep-research": {
82
- "command": "npx",
83
- "args": ["-y", "gemini-deep-research-mcp"],
84
- "env": {
85
- "GEMINI_API_KEY": "your-api-key"
86
- }
87
- }
88
- }
89
- }
90
- ```
91
- </details>
92
-
93
- ---
94
-
95
- ### Using uvx (Python)
96
-
97
- Requires [uv](https://docs.astral.sh/uv/).
98
-
99
- ```bash
100
- uvx gemini-deep-research-mcp
101
- ```
102
-
103
- <details>
104
- <summary><strong>VS Code config</strong></summary>
105
-
106
- ```json
107
- {
108
- "servers": {
109
- "gemini-deep-research": {
110
- "command": "uvx",
111
- "args": ["gemini-deep-research-mcp"],
112
- "env": {
113
- "GEMINI_API_KEY": "your-api-key"
114
- }
115
- }
116
- }
117
- }
118
- ```
119
- </details>
120
-
121
- <details>
122
- <summary><strong>Claude Desktop config</strong></summary>
123
-
124
- ```json
125
- {
126
- "mcpServers": {
127
- "gemini-deep-research": {
128
- "command": "uvx",
129
- "args": ["gemini-deep-research-mcp"],
130
- "env": {
131
- "GEMINI_API_KEY": "your-api-key"
132
- }
133
- }
134
- }
135
- }
136
- ```
137
- </details>
138
-
139
- ---
140
-
141
- ### Using pip
142
-
143
- ```bash
144
- pip install gemini-deep-research-mcp
145
- ```
146
-
147
- <details>
148
- <summary><strong>VS Code config</strong></summary>
149
-
150
- ```json
151
- {
152
- "servers": {
153
- "gemini-deep-research": {
154
- "command": "gemini-deep-research-mcp",
155
- "env": {
156
- "GEMINI_API_KEY": "your-api-key"
157
- }
158
- }
159
- }
160
- }
161
- ```
162
- </details>
163
-
164
- <details>
165
- <summary><strong>Claude Desktop config</strong></summary>
166
-
167
- ```json
168
- {
169
- "mcpServers": {
170
- "gemini-deep-research": {
171
- "command": "gemini-deep-research-mcp",
172
- "env": {
173
- "GEMINI_API_KEY": "your-api-key"
174
- }
175
- }
176
- }
177
- }
178
- ```
179
- </details>
180
-
181
- ---
182
-
183
- ## Prerequisites
184
-
185
- <details>
186
- <summary><strong>Install uv (required for npx/uvx methods)</strong></summary>
187
-
188
- ```bash
189
- # macOS/Linux
190
- curl -LsSf https://astral.sh/uv/install.sh | sh
191
-
192
- # Windows (PowerShell)
193
- powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
194
- ```
195
- </details>
196
-
197
- ---
198
-
199
- ## Tool: `gemini_deep_research`
200
-
201
- Conducts comprehensive web research using Gemini's Deep Research Agent. Blocks until research completes (typically 10-20 minutes).
202
-
203
- **When to use:**
204
- - Complex topics requiring multi-source analysis
205
- - Synthesized information from the web
206
- - Fact-checking and cross-referencing
207
-
208
- | Parameter | Type | Required | Default | Description |
209
- |-----------|------|----------|---------|-------------|
210
- | `prompt` | string | ✓ | — | Your research question or topic |
211
- | `include_citations` | boolean | | `true` | Include resolved source URLs |
212
-
213
- | Output | Description |
214
- |--------|-------------|
215
- | `status` | `completed`, `failed`, or `cancelled` |
216
- | `report_text` | Synthesized research report |
217
-
218
- ## Configuration
219
-
220
- | Variable | Required | Default | Description |
221
- |----------|----------|---------|-------------|
222
- | `GEMINI_API_KEY` | ✓ | — | Your [Gemini API key](https://aistudio.google.com/apikey) |
223
- | `GEMINI_DEEP_RESEARCH_AGENT` | | `deep-research-pro-preview-12-2025` | Model to use |
224
-
225
- ## Development
226
-
227
- ```bash
228
- git clone https://github.com/bharatvansh/gemini-deep-research-mcp.git
229
- cd gemini-deep-research-mcp
230
- pip install -e .[dev]
231
- pytest
232
- ```
233
-
234
- ## License
235
-
236
- MIT