@maxanatsko/gemini-mcp-tool 2.1.0 → 2.1.2

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/LICENSE CHANGED
@@ -1,6 +1,7 @@
1
1
  MIT License (Non-Commercial)
2
2
 
3
3
  Copyright (c) 2025 jamubc
4
+ Copyright (c) 2025 Maxim Anatsko
4
5
 
5
6
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
7
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -1,230 +1,198 @@
1
+ # Gemini MCP Tool
1
2
 
2
- # Gemini MCP Tool v2.0.0 🚀
3
+ <br>
3
4
 
4
- <div align="center">
5
-
6
- [![GitHub Release](https://img.shields.io/github/v/release/maxanatsko/gemini-mcp-tool?logo=github&label=GitHub)](https://github.com/maxanatsko/gemini-mcp-tool/releases)
7
- [![Version](https://img.shields.io/badge/version-2.0.0-blue.svg)](https://github.com/maxanatsko/gemini-mcp-tool)
8
- [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
9
- [![Open Source](https://img.shields.io/badge/Open%20Source-❤️-red.svg)](https://github.com/maxanatsko/gemini-mcp-tool)
10
-
11
- </div>
12
-
13
- > **🎉 v2.0.0 Release** - Major async refactor with improved performance, error handling, and code quality!
14
-
15
- This is a Model Context Protocol (MCP) server that allows AI assistants to interact with the [Gemini CLI](https://github.com/google-gemini/gemini-cli). It enables the AI to leverage the power of Gemini's massive token window for large analysis, especially with large files and codebases using the `@` syntax for direction.
16
-
17
- - Ask gemini natural questions, through claude or Brainstorm new ideas in a party of 3!
18
-
19
- > 📚 **Original Documentation**: [View Full Documentation](https://jamubc.github.io/gemini-mcp-tool/) - Examples, FAQ, Troubleshooting, Best Practices
20
-
21
- ## TLDR: [![Claude](https://img.shields.io/badge/Claude-D97757?logo=claude&logoColor=fff)](#) + [![Google Gemini](https://img.shields.io/badge/Google%20Gemini-886FBF?logo=googlegemini&logoColor=fff)](#)
5
+ ```
6
+ ┌─────────────────────────────────────────────────────────────────┐
7
+ │ │
8
+ │ Model Context Protocol server for Google Gemini CLI │
9
+ │ │
10
+ │ Claude ──────────────── Gemini │
11
+ │ │
12
+ │ Leverage Gemini's massive token window │
13
+ │ for large file and codebase analysis │
14
+ │ │
15
+ └─────────────────────────────────────────────────────────────────┘
16
+ ```
22
17
 
23
- **Goal**: Use Gemini's powerful analysis capabilities directly in Claude Code to save tokens and analyze large files.
18
+ <br>
24
19
 
25
- ## 🎯 What's New in v2.0.0
20
+ **Version** `2.1.0`
21
+ **License** `MIT`
26
22
 
27
- This fork includes a **major async refactor** that addresses all code quality issues and modernizes the codebase:
23
+ ---
28
24
 
29
- ### ✅ **17 Improvements Implemented**
30
- - **100% Async I/O**: All file operations converted from `fs` to `fs/promises` (no event loop blocking)
31
- - **Robust Error Handling**: Fixed all empty catch blocks with proper logging and user feedback
32
- - **Optimized Cleanup**: Session cleanup now runs at 80% threshold (not on every save)
33
- - **Enhanced Security**: Improved session ID sanitization with 3-step regex validation
34
- - **Graceful Degradation**: Session failures no longer break tool functionality
35
- - **Consistent LRU**: All tools now use LRU eviction policy for better performance
36
- - **Type Safety**: Maintained generic `SessionManager<T>` with full type safety
37
- - **Better Logging**: Consistent log levels with tool-specific prefixes
25
+ <br>
38
26
 
39
- ### 🔧 **Technical Highlights**
40
- - Lazy initialization with race condition protection
41
- - Helper methods to reduce code duplication
42
- - Centralized configuration defaults
43
- - `createdAt` field always guaranteed to be set
44
- - Async error handling in tool integrations
27
+ ## Prerequisites
45
28
 
46
- ### 📊 **Test Results**
47
- All 3 comprehensive integration tests pass
48
- TypeScript compiles with zero errors
49
- ✅ Gemini code review validates improvements
29
+ ```
30
+ Node.js 16.0.0
31
+ Google Gemini CLI (configured)
32
+ ```
50
33
 
51
- > **Breaking Change**: All SessionManager methods are now async. Update any custom code that directly uses SessionManager to use `await`.
34
+ <br>
52
35
 
53
- ## Prerequisites
54
-
55
- Before using this tool, ensure you have:
36
+ ---
56
37
 
57
- 1. **[Node.js](https://nodejs.org/)** (v16.0.0 or higher)
58
- 2. **[Google Gemini CLI](https://github.com/google-gemini/gemini-cli)** installed and configured
38
+ <br>
59
39
 
40
+ ## Installation
60
41
 
61
- ### Installation Options
42
+ <br>
62
43
 
63
- #### Option 1: Install from GitHub Fork (Recommended for v2.0.0)
44
+ ### Recommended
64
45
 
65
46
  ```bash
66
47
  claude mcp add gemini-cli -- npx -y maxanatsko/gemini-mcp-tool
67
48
  ```
68
49
 
69
- #### Option 2: Install Locally (For Development)
50
+ <br>
51
+
52
+ ### Local Development
70
53
 
71
54
  ```bash
72
- # Clone the repository
73
55
  git clone https://github.com/maxanatsko/gemini-mcp-tool.git
74
56
  cd gemini-mcp-tool
75
57
 
76
- # Build and link
77
58
  npm install
78
59
  npm run build
79
60
  npm link
80
61
 
81
- # Add to Claude
82
62
  claude mcp add gemini-cli -- gemini-mcp
83
63
  ```
84
64
 
85
- #### Option 3: Original NPM Package (v1.1.4 - without async refactor)
65
+ <br>
66
+
67
+ ### Verify
86
68
 
87
69
  ```bash
88
- claude mcp add gemini-cli -- npx -y gemini-mcp-tool
70
+ /mcp
89
71
  ```
90
72
 
91
- ### Verify Installation
92
-
93
- Type `/mcp` inside Claude Code to verify the gemini-cli MCP is active.
73
+ <br>
94
74
 
95
75
  ---
96
76
 
97
- ### Alternative: Import from Claude Desktop
98
-
99
- If you already have it configured in Claude Desktop:
100
-
101
- 1. Add to your Claude Desktop config:
102
- ```json
103
- "gemini-cli": {
104
- "command": "npx",
105
- "args": ["-y", "maxanatsko/gemini-mcp-tool"]
106
- }
107
- ```
108
-
109
- 2. Import to Claude Code:
110
- ```bash
111
- claude mcp add-from-claude-desktop
112
- ```
77
+ <br>
113
78
 
114
79
  ## Configuration
115
80
 
116
- Register the MCP server with your MCP client:
81
+ <br>
117
82
 
118
- ### For NPX Usage (Recommended)
119
-
120
- Add this configuration to your Claude Desktop config file:
83
+ ### Claude Desktop
121
84
 
122
85
  ```json
123
86
  {
124
87
  "mcpServers": {
125
88
  "gemini-cli": {
126
89
  "command": "npx",
127
- "args": ["-y", "gemini-mcp-tool"]
90
+ "args": ["-y", "maxanatsko/gemini-mcp-tool"]
128
91
  }
129
92
  }
130
93
  }
131
94
  ```
132
95
 
133
- ### For Global Installation
96
+ <br>
134
97
 
135
- If you installed globally, use this configuration instead:
98
+ ### Config Locations
136
99
 
137
- ```json
138
- {
139
- "mcpServers": {
140
- "gemini-cli": {
141
- "command": "gemini-mcp"
142
- }
143
- }
144
- }
145
100
  ```
101
+ macOS ~/Library/Application Support/Claude/claude_desktop_config.json
102
+ Windows %APPDATA%\Claude\claude_desktop_config.json
103
+ Linux ~/.config/claude/claude_desktop_config.json
104
+ ```
105
+
106
+ <br>
107
+
108
+ ---
109
+
110
+ <br>
146
111
 
147
- **Configuration File Locations:**
112
+ ## Usage
148
113
 
149
- - **Claude Desktop**:
150
- - **macOS**: `~/Library/Application Support/Claude/claude_desktop_config.json`
151
- - **Windows**: `%APPDATA%\Claude\claude_desktop_config.json`
152
- - **Linux**: `~/.config/claude/claude_desktop_config.json`
114
+ <br>
153
115
 
154
- After updating the configuration, restart your terminal session.
116
+ ### File Analysis
155
117
 
156
- ## Example Workflow
118
+ ```
119
+ ask gemini to analyze @src/main.js
120
+ use gemini to summarize @.
121
+ analyze @package.json dependencies
122
+ ```
157
123
 
158
- - **Natural language**: "use gemini to explain index.html", "understand the massive project using gemini", "ask gemini to search for latest news"
159
- - **Claude Code**: Type `/gemini-cli` and commands will populate in Claude Code's interface.
124
+ <br>
160
125
 
161
- ## Usage Examples
126
+ ### General Questions
162
127
 
163
- ### With File References (using @ syntax)
128
+ ```
129
+ ask gemini about React best practices
130
+ use gemini to explain div centering
131
+ ask gemini for latest tech news
132
+ ```
164
133
 
165
- - `ask gemini to analyze @src/main.js and explain what it does`
166
- - `use gemini to summarize @. the current directory`
167
- - `analyze @package.json and tell me about dependencies`
134
+ <br>
168
135
 
169
- ### General Questions (without files)
136
+ ### Sandbox Mode
170
137
 
171
- - `ask gemini to search for the latest tech news`
172
- - `use gemini to explain div centering`
173
- - `ask gemini about best practices for React development related to @file_im_confused_about`
138
+ ```
139
+ use gemini sandbox to run @script.py
140
+ ask gemini to safely test this code
141
+ use gemini sandbox to install numpy
142
+ ```
174
143
 
175
- ### Using Gemini CLI's Sandbox Mode (-s)
144
+ <br>
176
145
 
177
- The sandbox mode allows you to safely test code changes, run scripts, or execute potentially risky operations in an isolated environment.
146
+ ---
178
147
 
179
- - `use gemini sandbox to create and run a Python script that processes data`
180
- - `ask gemini to safely test @script.py and explain what it does`
181
- - `use gemini sandbox to install numpy and create a data visualization`
182
- - `test this code safely: Create a script that makes HTTP requests to an API`
148
+ <br>
183
149
 
184
- ### Tools (for the AI)
150
+ ## Tools
185
151
 
186
- These tools are designed to be used by the AI assistant.
152
+ <br>
187
153
 
188
- - **`ask-gemini`**: Asks Google Gemini for its perspective. Can be used for general questions or complex analysis of files.
189
- - **`prompt`** (required): The analysis request. Use the `@` syntax to include file or directory references (e.g., `@src/main.js explain this code`) or ask general questions (e.g., `Please use a web search to find the latest news stories`).
190
- - **`model`** (optional): The Gemini model to use. Defaults to `gemini-2.5-pro`.
191
- - **`sandbox`** (optional): Set to `true` to run in sandbox mode for safe code execution.
192
- - **`sandbox-test`**: Safely executes code or commands in Gemini's sandbox environment. Always runs in sandbox mode.
193
- - **`prompt`** (required): Code testing request (e.g., `Create and run a Python script that...` or `@script.py Run this safely`).
194
- - **`model`** (optional): The Gemini model to use.
195
- - **`Ping`**: A simple test tool that echoes back a message.
196
- - **`Help`**: Shows the Gemini CLI help text.
154
+ | Tool | Description |
155
+ |:-----|:------------|
156
+ | `ask-gemini` | Query Gemini with `@` file references |
157
+ | `brainstorm` | Creative ideation with frameworks |
158
+ | `review-code` | Interactive code review sessions |
159
+ | `ping` | Connection test |
160
+ | `help` | CLI documentation |
197
161
 
198
- ### Slash Commands (for the User)
162
+ <br>
199
163
 
200
- You can use these commands directly in Claude Code's interface (compatibility with other clients has not been tested).
164
+ ### Parameters
201
165
 
202
- - **/analyze**: Analyzes files or directories using Gemini, or asks general questions.
203
- - **`prompt`** (required): The analysis prompt. Use `@` syntax to include files (e.g., `/analyze prompt:@src/ summarize this directory`) or ask general questions (e.g., `/analyze prompt:Please use a web search to find the latest news stories`).
204
- - **/sandbox**: Safely tests code or scripts in Gemini's sandbox environment.
205
- - **`prompt`** (required): Code testing request (e.g., `/sandbox prompt:Create and run a Python script that processes CSV data` or `/sandbox prompt:@script.py Test this script safely`).
206
- - **/help**: Displays the Gemini CLI help information.
207
- - **/ping**: Tests the connection to the server.
208
- - **`message`** (optional): A message to echo back.
166
+ <br>
209
167
 
210
- ## About This Fork
168
+ **ask-gemini**
211
169
 
212
- This is a fork of [jamubc/gemini-mcp-tool](https://github.com/jamubc/gemini-mcp-tool) with significant improvements:
170
+ ```
171
+ prompt Required Analysis request with @ syntax
172
+ model Optional gemini-2.5-pro (default)
173
+ sandbox Optional Safe code execution
174
+ session Optional Conversation continuity
175
+ changeMode Optional Structured edit suggestions
176
+ ```
177
+
178
+ <br>
213
179
 
214
- - **v2.0.0**: Complete async refactor addressing all 15 code review issues
215
- - **Enhanced**: Better error handling, performance optimization, and code quality
216
- - **Tested**: Comprehensive integration tests validate all improvements
180
+ ---
181
+
182
+ <br>
217
183
 
218
- ### Contributing to Original Project
184
+ ## Links
219
185
 
220
- The original project is maintained by [jamubc](https://github.com/jamubc). See their [Contributing Guidelines](https://github.com/jamubc/gemini-mcp-tool/blob/main/CONTRIBUTING.md) for details.
186
+ <br>
221
187
 
222
- ### Contributing to This Fork
188
+ [Documentation](https://jamubc.github.io/gemini-mcp-tool/)
189
+ [Original Project](https://github.com/jamubc/gemini-mcp-tool)
190
+ [This Fork](https://github.com/maxanatsko/gemini-mcp-tool)
223
191
 
224
- Issues and pull requests welcome at [maxanatsko/gemini-mcp-tool](https://github.com/maxanatsko/gemini-mcp-tool).
192
+ <br>
225
193
 
226
- ## License
194
+ ---
227
195
 
228
- This project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.
196
+ <br>
229
197
 
230
- **Disclaimer:** This is an unofficial, third-party tool and is not affiliated with, endorsed, or sponsored by Google.
198
+ <sub>MIT License Not affiliated with Google</sub>
package/dist/index.js CHANGED
File without changes
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/tools/index.ts"],"names":[],"mappings":"AAmBA,cAAc,eAAe,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/tools/index.ts"],"names":[],"mappings":"AAkBA,cAAc,eAAe,CAAC"}
@@ -1,11 +1,11 @@
1
1
  // Tool Registry Index - Registers all tools
2
2
  import { toolRegistry } from './registry.js';
3
3
  import { askGeminiTool } from './ask-gemini.tool.js';
4
- import { pingTool, helpTool } from './simple-tools.js';
4
+ import { pingTool } from './simple-tools.js';
5
5
  import { brainstormTool } from './brainstorm.tool.js';
6
6
  import { fetchChunkTool } from './fetch-chunk.tool.js';
7
7
  import { timeoutTestTool } from './timeout-test.tool.js';
8
8
  import { reviewCodeTool } from './review-code.tool.js';
9
- toolRegistry.push(askGeminiTool, pingTool, helpTool, brainstormTool, fetchChunkTool, timeoutTestTool, reviewCodeTool);
9
+ toolRegistry.push(askGeminiTool, pingTool, brainstormTool, fetchChunkTool, timeoutTestTool, reviewCodeTool);
10
10
  export * from './registry.js';
11
11
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/tools/index.ts"],"names":[],"mappings":"AAAA,4CAA4C;AAC5C,OAAO,EAAE,YAAY,EAAE,MAAM,eAAe,CAAC;AAC7C,OAAO,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAC;AACrD,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AACvD,OAAO,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAC;AACtD,OAAO,EAAE,cAAc,EAAE,MAAM,uBAAuB,CAAC;AACvD,OAAO,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AACzD,OAAO,EAAE,cAAc,EAAE,MAAM,uBAAuB,CAAC;AAEvD,YAAY,CAAC,IAAI,CACf,aAAa,EACb,QAAQ,EACR,QAAQ,EACR,cAAc,EACd,cAAc,EACd,eAAe,EACf,cAAc,CACf,CAAC;AAEF,cAAc,eAAe,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/tools/index.ts"],"names":[],"mappings":"AAAA,4CAA4C;AAC5C,OAAO,EAAE,YAAY,EAAE,MAAM,eAAe,CAAC;AAC7C,OAAO,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAC;AACrD,OAAO,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AAC7C,OAAO,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAC;AACtD,OAAO,EAAE,cAAc,EAAE,MAAM,uBAAuB,CAAC;AACvD,OAAO,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AACzD,OAAO,EAAE,cAAc,EAAE,MAAM,uBAAuB,CAAC;AAEvD,YAAY,CAAC,IAAI,CACf,aAAa,EACb,QAAQ,EACR,cAAc,EACd,cAAc,EACd,eAAe,EACf,cAAc,CACf,CAAC;AAEF,cAAc,eAAe,CAAC"}
@@ -1,4 +1,3 @@
1
1
  import { UnifiedTool } from './registry.js';
2
2
  export declare const pingTool: UnifiedTool;
3
- export declare const helpTool: UnifiedTool;
4
3
  //# sourceMappingURL=simple-tools.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"simple-tools.d.ts","sourceRoot":"","sources":["../../src/tools/simple-tools.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAO5C,eAAO,MAAM,QAAQ,EAAE,WAYtB,CAAC;AAIF,eAAO,MAAM,QAAQ,EAAE,WAWtB,CAAC"}
1
+ {"version":3,"file":"simple-tools.d.ts","sourceRoot":"","sources":["../../src/tools/simple-tools.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAO5C,eAAO,MAAM,QAAQ,EAAE,WAYtB,CAAC"}
@@ -16,17 +16,4 @@ export const pingTool = {
16
16
  return executeCommand("echo", [message], onProgress);
17
17
  }
18
18
  };
19
- const helpArgsSchema = z.object({});
20
- export const helpTool = {
21
- name: "Help",
22
- description: "receive help information",
23
- zodSchema: helpArgsSchema,
24
- prompt: {
25
- description: "receive help information",
26
- },
27
- category: 'simple',
28
- execute: async (args, onProgress) => {
29
- return executeCommand("gemini", ["-help"], onProgress);
30
- }
31
- };
32
19
  //# sourceMappingURL=simple-tools.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"simple-tools.js","sourceRoot":"","sources":["../../src/tools/simple-tools.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,OAAO,EAAE,cAAc,EAAE,MAAM,6BAA6B,CAAC;AAE7D,MAAM,cAAc,GAAG,CAAC,CAAC,MAAM,CAAC;IAC9B,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC,QAAQ,CAAC,kBAAkB,CAAC;CAC5D,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,QAAQ,GAAgB;IACnC,IAAI,EAAE,MAAM;IACZ,WAAW,EAAE,MAAM;IACnB,SAAS,EAAE,cAAc;IACzB,MAAM,EAAE;QACN,WAAW,EAAE,6CAA6C;KAC3D;IACD,QAAQ,EAAE,QAAQ;IAClB,OAAO,EAAE,KAAK,EAAE,IAAI,EAAE,UAAU,EAAE,EAAE;QAClC,MAAM,OAAO,GAAG,IAAI,CAAC,MAAM,IAAI,IAAI,CAAC,OAAO,IAAI,OAAO,CAAC;QACvD,OAAO,cAAc,CAAC,MAAM,EAAE,CAAC,OAAiB,CAAC,EAAE,UAAU,CAAC,CAAC;IACjE,CAAC;CACF,CAAC;AAEF,MAAM,cAAc,GAAG,CAAC,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC;AAEpC,MAAM,CAAC,MAAM,QAAQ,GAAgB;IACnC,IAAI,EAAE,MAAM;IACZ,WAAW,EAAE,0BAA0B;IACvC,SAAS,EAAE,cAAc;IACzB,MAAM,EAAE;QACN,WAAW,EAAE,0BAA0B;KACxC;IACD,QAAQ,EAAE,QAAQ;IAClB,OAAO,EAAE,KAAK,EAAE,IAAI,EAAE,UAAU,EAAE,EAAE;QAClC,OAAO,cAAc,CAAC,QAAQ,EAAE,CAAC,OAAO,CAAC,EAAE,UAAU,CAAC,CAAC;IACzD,CAAC;CACF,CAAC"}
1
+ {"version":3,"file":"simple-tools.js","sourceRoot":"","sources":["../../src/tools/simple-tools.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,OAAO,EAAE,cAAc,EAAE,MAAM,6BAA6B,CAAC;AAE7D,MAAM,cAAc,GAAG,CAAC,CAAC,MAAM,CAAC;IAC9B,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC,QAAQ,CAAC,kBAAkB,CAAC;CAC5D,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,QAAQ,GAAgB;IACnC,IAAI,EAAE,MAAM;IACZ,WAAW,EAAE,MAAM;IACnB,SAAS,EAAE,cAAc;IACzB,MAAM,EAAE;QACN,WAAW,EAAE,6CAA6C;KAC3D;IACD,QAAQ,EAAE,QAAQ;IAClB,OAAO,EAAE,KAAK,EAAE,IAAI,EAAE,UAAU,EAAE,EAAE;QAClC,MAAM,OAAO,GAAG,IAAI,CAAC,MAAM,IAAI,IAAI,CAAC,OAAO,IAAI,OAAO,CAAC;QACvD,OAAO,cAAc,CAAC,MAAM,EAAE,CAAC,OAAiB,CAAC,EAAE,UAAU,CAAC,CAAC;IACjE,CAAC;CACF,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxanatsko/gemini-mcp-tool",
3
- "version": "2.1.0",
3
+ "version": "2.1.2",
4
4
  "description": "MCP server for Gemini CLI integration",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",