From 19afcba58f37e2bf1465517fba411a9c327b6cf3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adri=C3=A1n=20Arribas=20Lopera?= Date: Mon, 25 Aug 2025 22:08:21 +0200 Subject: [PATCH] Add gemini-bridge MCP server Lightweight MCP server bridging AI coding assistants to Google's Gemini AI via official CLI. Features zero API costs, stateless operation, and seamless integration with Claude Code, Cursor, VS Code, and other MCP-compatible clients. Key features: - Direct Gemini CLI integration with no API costs - Stateless architecture with 60-second timeouts - Two core MCP tools: consult_gemini and consult_gemini_with_files - Multi-stage Docker build with Node.js + Python - Production-ready with proper error handling - Compatible with any MCP-compatible AI coding assistant Repository: https://github.com/shelakh/gemini-bridge Category: AI tools License: MIT --- servers/gemini-bridge/server.yaml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 servers/gemini-bridge/server.yaml diff --git a/servers/gemini-bridge/server.yaml b/servers/gemini-bridge/server.yaml new file mode 100644 index 00000000..26c29571 --- /dev/null +++ b/servers/gemini-bridge/server.yaml @@ -0,0 +1,19 @@ +name: gemini-bridge +image: mcp/gemini-bridge +type: server +meta: + category: ai + tags: + - gemini + - ai + - google + - coding-assistant +about: + title: Gemini Bridge + description: Lightweight MCP server bridging AI coding assistants to Google's Gemini AI via official CLI. Zero API costs, stateless operation, and seamless integration with Claude Code, Cursor, VS Code, and other MCP-compatible clients. + icon: https://avatars.githubusercontent.com/u/182288589?s=200&v=4 +source: + project: https://github.com/shelakh/gemini-bridge +run: + env: + MCP_TRANSPORT: stdio \ No newline at end of file