Skip to content

Releases: choplin/mcp-gemini-cli

v0.3.1

03 Jul 09:12

Choose a tag to compare

What's Changed

🐛 Bug Fixes

  • Fixed Windows compatibility issue with which command by @gpsnmeajp

📦 Full Changelog

v0.3.0...v0.3.1

Release v0.3.0

01 Jul 17:38

Choose a tag to compare

Breaking Changes 🚨

  • Tool names simplified:
    • geminiChatchat
    • geminiAnalyzeFileanalyzeFile
  • Package name changed:
    • @choplin/mcp-gemini-climcp-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"]
    }
  }
}