MCP Server
Maintained
MIT
io.github.PavelGuzenfeld/gemini MCP Server
io.github.PavelGuzenfeld/gemini
What is the io.github.PavelGuzenfeld/gemini MCP server?
MCP server that exposes Google Gemini as tools for Claude Code
How to install io.github.PavelGuzenfeld/gemini
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Environment / auth
GEMINI_API_KEYrequiredsecretGoogle Gemini API key
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"gemini": {
"command": "npx",
"args": [
"-y",
"claude-gemini-mcp"
],
"env": {
"GEMINI_API_KEY": "<YOUR_GEMINI_API_KEY>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"gemini": {
"command": "npx",
"args": [
"-y",
"claude-gemini-mcp"
],
"env": {
"GEMINI_API_KEY": "<YOUR_GEMINI_API_KEY>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"gemini": {
"command": "npx",
"args": [
"-y",
"claude-gemini-mcp"
],
"env": {
"GEMINI_API_KEY": "<YOUR_GEMINI_API_KEY>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"gemini": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"claude-gemini-mcp"
],
"env": {
"GEMINI_API_KEY": "<YOUR_GEMINI_API_KEY>"
}
}
}
}Claude Code
claude mcp add gemini --env GEMINI_API_KEY=<YOUR_GEMINI_API_KEY> -- npx -y claude-gemini-mcpRelated MCP servers
io.github.PavelGuzenfeld/media-forge
Maintained
MCP server for generating diagrams, charts, presentations, and animations for Markdown documentation
0
View repository →TypeScript
MIT