
Gemini
STDIOTypeScript MCP server integrating with Google's Gemini Pro model for text generation
TypeScript MCP server integrating with Google's Gemini Pro model for text generation
A TypeScript implementation of a Model Context Protocol (MCP) server that integrates with Google's Gemini Pro model.
From server: gemini
To install Gemini MCP Server for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install @georgejeffers/gemini-mcp-server --client claude
git clone https://github.com/GeorgeJeffers/gemini-mcp-server.git cd gemini-mcp-server
npm install
npm run build
To use this server with Claude Desktop:
{ "name": "gemini", "command": "node", "args": ["dist/gemini_mcp_server.js"], "env": { "GEMINI_API_KEY": "your_api_key_here" }, "cwd": "/path/to/mcp-gemini-server" }
Replace:
/path/to/mcp-gemini-server
with the absolute path to where you cloned this repositoryyour_api_key_here
with your actual Google Gemini API keyThe server will now be available in Claude Desktop's MCP server list.
MIT
GeorgeJeffers