@rlabs-inc/gemini-mcp 0.6.0 → 0.6.1
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.
- package/README.md +16 -5
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,21 +4,29 @@ A Model Context Protocol (MCP) server for integrating Google's Gemini 3 models w
|
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/@rlabs-inc/gemini-mcp)
|
|
6
6
|
|
|
7
|
-
## What's New in v0.
|
|
7
|
+
## What's New in v0.6.0
|
|
8
8
|
|
|
9
|
-
**
|
|
9
|
+
**35+ tools** for comprehensive Gemini 3 integration - the most complete Gemini MCP server available!
|
|
10
10
|
|
|
11
|
-
**
|
|
11
|
+
**Deep Research Agent (NEW!):**
|
|
12
|
+
- **gemini-deep-research** - Autonomous multi-step research with web search
|
|
13
|
+
- **gemini-check-research** - Poll research status and get results
|
|
14
|
+
- **gemini-research-followup** - Ask follow-up questions on completed research
|
|
15
|
+
|
|
16
|
+
**Token Management (NEW!):**
|
|
17
|
+
- **gemini-count-tokens** - Count tokens before API calls with cost estimates
|
|
18
|
+
|
|
19
|
+
**Text-to-Speech:**
|
|
12
20
|
- **gemini-speak** - Convert text to speech with 30 unique voices
|
|
13
21
|
- **gemini-dialogue** - Generate two-speaker conversations
|
|
14
22
|
- **gemini-list-voices** - Browse all available voices
|
|
15
23
|
|
|
16
|
-
**URL Analysis
|
|
24
|
+
**URL Analysis:**
|
|
17
25
|
- **gemini-analyze-url** - Analyze web pages with questions
|
|
18
26
|
- **gemini-compare-urls** - Compare two URLs side by side
|
|
19
27
|
- **gemini-extract-from-url** - Extract structured data from pages
|
|
20
28
|
|
|
21
|
-
**Context Caching
|
|
29
|
+
**Context Caching:**
|
|
22
30
|
- **gemini-create-cache** - Cache large documents for repeated queries
|
|
23
31
|
- **gemini-query-cache** - Query cached content efficiently
|
|
24
32
|
- **gemini-list-caches** / **gemini-delete-cache** - Manage caches
|
|
@@ -40,6 +48,7 @@ A Model Context Protocol (MCP) server for integrating Google's Gemini 3 models w
|
|
|
40
48
|
|
|
41
49
|
### Previous Versions
|
|
42
50
|
|
|
51
|
+
**v0.5.1:** Documentation updates, code quality improvements
|
|
43
52
|
**v0.5.0:** 30+ tools, TTS, URL analysis, caching
|
|
44
53
|
**v0.4.0:** YouTube, documents, code execution, search
|
|
45
54
|
**v0.3.0:** Thinking levels, structured output
|
|
@@ -51,6 +60,8 @@ A Model Context Protocol (MCP) server for integrating Google's Gemini 3 models w
|
|
|
51
60
|
|
|
52
61
|
| Feature | Description |
|
|
53
62
|
|-------------------------------|-----------------------------------------------------------------|
|
|
63
|
+
| **Deep Research Agent** | Autonomous multi-step research with web search and citations |
|
|
64
|
+
| **Token Counting** | Count tokens and estimate costs before API calls |
|
|
54
65
|
| **Text-to-Speech** | 30 unique voices, single speaker or two-speaker dialogues |
|
|
55
66
|
| **URL Analysis** | Analyze, compare, and extract data from web pages |
|
|
56
67
|
| **Context Caching** | Cache large documents for efficient repeated queries |
|
package/dist/index.js
CHANGED