gemini-mcp-server
A Model Context Protocol (MCP) server that integrates with Google's Gemini Pro model, can be used in Claude Desktop App.
Overview
The gemini-mcp-server is a TypeScript implementation of a Model Context Protocol (MCP) server that integrates with Google's Gemini Pro model, designed for use in the Claude Desktop App.
To use the gemini-mcp-server, clone the repository, install the dependencies, build the project, and configure it within the Claude Desktop app by adding the necessary settings.
- Integration with Google's Gemini Pro model - TypeScript implementation for better type safety - Easy configuration for use with Claude Desktop
- Enabling advanced AI functionalities in the Claude Desktop App.
- Facilitating text generation tasks using the Gemini Pro model.
- Serving as a backend for applications requiring context-aware processing.
Add to your AI client
Use these steps to connect gemini-mcp-server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"gemini-mcp-server-georgejeffers": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-gemini-mcp-server-georgejeffers"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"gemini-mcp-server-georgejeffers": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-gemini-mcp-server-georgejeffers"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"gemini-mcp-server-georgejeffers": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-gemini-mcp-server-georgejeffers"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"gemini-mcp-server-georgejeffers": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-gemini-mcp-server-georgejeffers"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"gemini-mcp-server-georgejeffers": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-gemini-mcp-server-georgejeffers"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"gemini-mcp-server-georgejeffers": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-gemini-mcp-server-georgejeffers"
]
}
}
}FAQ
What are the prerequisites for using gemini-mcp-server?
You need Node.js 18 or higher, a Google Gemini API key, TypeScript, and the Claude Desktop app.
Is there a license for gemini-mcp-server?
Yes, it is licensed under the MIT License.
Who is the author of gemini-mcp-server?
The project is authored by George Jeffers.