gemini-mcp-server

MCP.Pizza Chef: georgejeffers

The gemini-mcp-server is a TypeScript-based Model Context Protocol server that integrates seamlessly with Google's Gemini Pro model. Designed for use with the Claude Desktop app, it enables real-time context feeding and interaction with Gemini's advanced language capabilities. It requires Node.js 18+, a Google Gemini API key, and TypeScript, providing a robust environment for developers to build AI-enhanced workflows leveraging Gemini's model within the MCP ecosystem.

Use This MCP server To

Integrate Gemini Pro model into Claude Desktop app workflows Enable real-time context feeding to Gemini model via MCP Develop AI agents using Gemini's language capabilities Create custom text generation tools with Gemini integration Automate multi-step reasoning tasks using Gemini in MCP Build secure, scoped model interactions with Gemini Test and deploy Gemini-powered MCP servers in TypeScript environments

README

gemini-mcp-server

smithery badge

A TypeScript implementation of a Model Context Protocol (MCP) server that integrates with Google's Gemini Pro model.

Gemini Server MCP server

MCP Tools

generate_text

From server: gemini

Prerequisites

  • Node.js 18 or higher
  • Google Gemini API key
  • TypeScript
  • Claude Desktop app

Installation

Installing via Smithery

To install Gemini MCP Server for Claude Desktop automatically via Smithery:

npx -y @smithery/cli install @georgejeffers/gemini-mcp-server --client claude

Manual Installation

  1. Clone the repository:
git clone https://github.com/GeorgeJeffers/gemini-mcp-server.git
cd gemini-mcp-server
  1. Install dependencies:
npm install
  1. Build:
npm run build

Claude Desktop Integration

To use this server with Claude Desktop:

  1. Open Claude Desktop
  2. Go to Settings > Developer
  3. Click "Edit Config"
  4. Add the following configuration:
{
  "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 repository
  • your_api_key_here with your actual Google Gemini API key

The server will now be available in Claude Desktop's MCP server list.

License

MIT

Author

GeorgeJeffers

gemini-mcp-server FAQ

How do I install the gemini-mcp-server?
You can install it automatically via Smithery CLI or manually by cloning the GitHub repo and following setup instructions.
What are the prerequisites for running gemini-mcp-server?
Node.js 18 or higher, a Google Gemini API key, TypeScript, and the Claude Desktop app are required.
Can gemini-mcp-server be used with other MCP clients besides Claude Desktop?
While primarily designed for Claude Desktop, it may be adaptable to other MCP clients with compatible interfaces.
Is the gemini-mcp-server open source?
Yes, it is available on GitHub under an open-source license for community use and contributions.
How does gemini-mcp-server handle security and scoped interactions?
It leverages MCP's built-in principles to ensure secure, scoped, and observable model interactions.
Can I extend gemini-mcp-server with additional tools or features?
Yes, being TypeScript-based, it supports extensibility and customization to fit specific workflow needs.
Does gemini-mcp-server support multi-step reasoning workflows?
Yes, it enables multi-step reasoning by feeding structured, real-time context into the Gemini model.
What LLM providers does gemini-mcp-server support?
It specifically integrates Google's Gemini Pro model but can be used alongside other MCP servers for models like OpenAI's GPT-4 and Anthropic's Claude.