@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 CHANGED
@@ -4,21 +4,29 @@ A Model Context Protocol (MCP) server for integrating Google's Gemini 3 models w
4
4
 
5
5
  [![npm version](https://badge.fury.io/js/@rlabs-inc%2Fgemini-mcp.svg)](https://www.npmjs.com/package/@rlabs-inc/gemini-mcp)
6
6
 
7
- ## What's New in v0.5.1
7
+ ## What's New in v0.6.0
8
8
 
9
- **30+ tools** for comprehensive Gemini 3 integration - the most complete Gemini MCP server available!
9
+ **35+ tools** for comprehensive Gemini 3 integration - the most complete Gemini MCP server available!
10
10
 
11
- **Text-to-Speech (NEW!):**
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 (NEW!):**
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 (NEW!):**
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
@@ -113,7 +113,7 @@ async function main() {
113
113
  // Create MCP server
114
114
  const server = new McpServer({
115
115
  name: 'Gemini',
116
- version: '0.6.0',
116
+ version: '0.6.1',
117
117
  });
118
118
  // Register tools
119
119
  registerQueryTool(server);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rlabs-inc/gemini-mcp",
3
- "version": "0.6.0",
3
+ "version": "0.6.1",
4
4
  "description": "MCP server for Gemini 3 integration with Claude Code - full frontier AI capabilities",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",