Gemini Image Mcp Server
Overview
Gemini Image Mcp Server is a server application designed to manage and serve images efficiently, particularly in the context of weather data.
To use the server, run the command uv --directory /ABSOLUTE/PATH/TO/PARENT/FOLDER/weather run server.py in your terminal, ensuring that you have the correct path to your image directory.
- Efficient image management and serving capabilities. - Designed specifically for handling weather-related image data. - Built using Python, making it easy to integrate with other Python applications.
- Serving weather images to web applications.
- Managing large datasets of meteorological images.
- Integrating with other data processing tools for weather analysis.
Add to your AI client
Use these steps to connect Gemini Image 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-image-mcp-server-rocksun": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-gemini-image-mcp-server-rocksun"
]
}
}
}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-image-mcp-server-rocksun": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-gemini-image-mcp-server-rocksun"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"gemini-image-mcp-server-rocksun": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-gemini-image-mcp-server-rocksun"
]
}
}
}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-image-mcp-server-rocksun": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-gemini-image-mcp-server-rocksun"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"gemini-image-mcp-server-rocksun": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-gemini-image-mcp-server-rocksun"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"gemini-image-mcp-server-rocksun": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-gemini-image-mcp-server-rocksun"
]
}
}
}FAQ
What programming language is Gemini Image Mcp Server written in?
Gemini Image Mcp Server is written in Python.
Is there a license for using Gemini Image Mcp Server?
Yes, it is licensed under the Apache-2.0 license.
How can I contribute to the project?
You can contribute by submitting issues or pull requests on the GitHub repository.