这是一个与Google的Gemini Pro模型集成的Model Context Protocol (MCP)服务器的TypeScript实现。
<a href="https://glama.ai/mcp/servers/ejwvacw7s0"> <img width="380" height="200" src="https://gips3.baidu.com/it/u=187930353,2252795432&fm=3081&app=3081&f=PNG?w=760&h=400" alt="Gemini Server MCP服务器" /> </a>来自服务器:gemini
要通过Smithery自动安装Gemini MCP服务器到Claude Desktop:
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
要在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"
}
替换:
/path/to/mcp-gemini-server 为你克隆此仓库的实际绝对路径your_api_key_here 为你的实际Google Gemini API密钥现在,该服务器将在Claude Desktop的MCP服务器列表中可用。
MIT
GeorgeJeffers