Releases: choplin/mcp-gemini-cli
Releases · choplin/mcp-gemini-cli
v0.3.1
What's Changed
🐛 Bug Fixes
- Fixed Windows compatibility issue with
whichcommand by @gpsnmeajp
📦 Full Changelog
Release v0.3.0
Breaking Changes 🚨
- Tool names simplified:
geminiChat→chatgeminiAnalyzeFile→analyzeFile
- Package name changed:
@choplin/mcp-gemini-cli→mcp-gemini-cli
New Features ✨
- analyzeFile tool: Analyze files using Gemini's multimodal capabilities
- Images: PNG, JPG, JPEG, GIF, WEBP, SVG, BMP
- Text: TXT, MD, TEXT
- Documents: PDF
Migration Guide
Update your tool calls:
// Before
geminiChat({ prompt: "Hello" });
geminiAnalyzeFile({ filePath: "/path/to/file.png" });
// After
chat({ prompt: "Hello" });
analyzeFile({ filePath: "/path/to/file.png" });Update your MCP configuration:
{
"mcpServers": {
"mcp-gemini-cli": {
"command": "npx",
"args": ["mcp-gemini-cli", "--allow-npx"]
}
}
}