ultimate-gemini-mcp 1.0.14__tar.gz → 1.0.15__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of ultimate-gemini-mcp might be problematic. Click here for more details.
- {ultimate_gemini_mcp-1.0.14 → ultimate_gemini_mcp-1.0.15}/PKG-INFO +1 -1
- {ultimate_gemini_mcp-1.0.14 → ultimate_gemini_mcp-1.0.15}/pyproject.toml +1 -1
- {ultimate_gemini_mcp-1.0.14 → ultimate_gemini_mcp-1.0.15}/src/__init__.py +1 -1
- {ultimate_gemini_mcp-1.0.14 → ultimate_gemini_mcp-1.0.15}/src/server.py +18 -9
- {ultimate_gemini_mcp-1.0.14 → ultimate_gemini_mcp-1.0.15}/.env.example +0 -0
- {ultimate_gemini_mcp-1.0.14 → ultimate_gemini_mcp-1.0.15}/.github/workflows/README.md +0 -0
- {ultimate_gemini_mcp-1.0.14 → ultimate_gemini_mcp-1.0.15}/.github/workflows/claude-code-review.yml +0 -0
- {ultimate_gemini_mcp-1.0.14 → ultimate_gemini_mcp-1.0.15}/.github/workflows/claude.yml +0 -0
- {ultimate_gemini_mcp-1.0.14 → ultimate_gemini_mcp-1.0.15}/.github/workflows/publish.yml +0 -0
- {ultimate_gemini_mcp-1.0.14 → ultimate_gemini_mcp-1.0.15}/.github/workflows/test.yml +0 -0
- {ultimate_gemini_mcp-1.0.14 → ultimate_gemini_mcp-1.0.15}/.gitignore +0 -0
- {ultimate_gemini_mcp-1.0.14 → ultimate_gemini_mcp-1.0.15}/CLAUDE.md +0 -0
- {ultimate_gemini_mcp-1.0.14 → ultimate_gemini_mcp-1.0.15}/LICENSE +0 -0
- {ultimate_gemini_mcp-1.0.14 → ultimate_gemini_mcp-1.0.15}/MANIFEST.in +0 -0
- {ultimate_gemini_mcp-1.0.14 → ultimate_gemini_mcp-1.0.15}/PUBLISHING.md +0 -0
- {ultimate_gemini_mcp-1.0.14 → ultimate_gemini_mcp-1.0.15}/README.md +0 -0
- {ultimate_gemini_mcp-1.0.14 → ultimate_gemini_mcp-1.0.15}/TEST_RESULTS.md +0 -0
- {ultimate_gemini_mcp-1.0.14 → ultimate_gemini_mcp-1.0.15}/app.py +0 -0
- {ultimate_gemini_mcp-1.0.14 → ultimate_gemini_mcp-1.0.15}/src/config/__init__.py +0 -0
- {ultimate_gemini_mcp-1.0.14 → ultimate_gemini_mcp-1.0.15}/src/config/constants.py +0 -0
- {ultimate_gemini_mcp-1.0.14 → ultimate_gemini_mcp-1.0.15}/src/config/settings.py +0 -0
- {ultimate_gemini_mcp-1.0.14 → ultimate_gemini_mcp-1.0.15}/src/core/__init__.py +0 -0
- {ultimate_gemini_mcp-1.0.14 → ultimate_gemini_mcp-1.0.15}/src/core/exceptions.py +0 -0
- {ultimate_gemini_mcp-1.0.14 → ultimate_gemini_mcp-1.0.15}/src/core/validation.py +0 -0
- {ultimate_gemini_mcp-1.0.14 → ultimate_gemini_mcp-1.0.15}/src/prompts/__init__.py +0 -0
- {ultimate_gemini_mcp-1.0.14 → ultimate_gemini_mcp-1.0.15}/src/resources/__init__.py +0 -0
- {ultimate_gemini_mcp-1.0.14 → ultimate_gemini_mcp-1.0.15}/src/services/__init__.py +0 -0
- {ultimate_gemini_mcp-1.0.14 → ultimate_gemini_mcp-1.0.15}/src/services/gemini_client.py +0 -0
- {ultimate_gemini_mcp-1.0.14 → ultimate_gemini_mcp-1.0.15}/src/services/image_service.py +0 -0
- {ultimate_gemini_mcp-1.0.14 → ultimate_gemini_mcp-1.0.15}/src/services/imagen_client.py +0 -0
- {ultimate_gemini_mcp-1.0.14 → ultimate_gemini_mcp-1.0.15}/src/services/prompt_enhancer.py +0 -0
- {ultimate_gemini_mcp-1.0.14 → ultimate_gemini_mcp-1.0.15}/src/tools/__init__.py +0 -0
- {ultimate_gemini_mcp-1.0.14 → ultimate_gemini_mcp-1.0.15}/src/tools/batch_generate.py +0 -0
- {ultimate_gemini_mcp-1.0.14 → ultimate_gemini_mcp-1.0.15}/src/tools/generate_image.py +0 -0
- {ultimate_gemini_mcp-1.0.14 → ultimate_gemini_mcp-1.0.15}/src/utils/__init__.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ultimate-gemini-mcp
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.15
|
|
4
4
|
Summary: Ultimate image generation MCP server unifying Gemini 2.5 Flash Image and Imagen 4/Fast/Ultra with advanced features
|
|
5
5
|
Project-URL: Homepage, https://github.com/anand-92/ultimate-image-gen-mcp
|
|
6
6
|
Project-URL: Repository, https://github.com/anand-92/ultimate-image-gen-mcp
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "ultimate-gemini-mcp"
|
|
3
|
-
version = "1.0.
|
|
3
|
+
version = "1.0.15"
|
|
4
4
|
description = "Ultimate image generation MCP server unifying Gemini 2.5 Flash Image and Imagen 4/Fast/Ultra with advanced features"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
requires-python = ">=3.11"
|
|
@@ -7,7 +7,7 @@ A unified MCP server that combines the best features from:
|
|
|
7
7
|
- Advanced features: batch processing, editing, templates, and more
|
|
8
8
|
"""
|
|
9
9
|
|
|
10
|
-
__version__ = "1.0.
|
|
10
|
+
__version__ = "1.0.15"
|
|
11
11
|
__author__ = "Ultimate Gemini MCP"
|
|
12
12
|
|
|
13
13
|
from .config import get_settings
|
|
@@ -133,28 +133,37 @@ def create_app() -> FastMCP:
|
|
|
133
133
|
|
|
134
134
|
return json.dumps(config, indent=2)
|
|
135
135
|
|
|
136
|
-
@mcp.
|
|
137
|
-
def get_image(
|
|
136
|
+
@mcp.tool()
|
|
137
|
+
async def get_image(filename: str) -> str:
|
|
138
138
|
"""
|
|
139
|
-
|
|
139
|
+
Retrieve a generated image by filename and return as base64.
|
|
140
140
|
|
|
141
141
|
Args:
|
|
142
|
-
|
|
142
|
+
filename: The filename of the image (e.g., "gemini-2.5-flash-image_20251026_055415_a cute orange cat sleeping on a sunny windowsill.png")
|
|
143
143
|
|
|
144
144
|
Returns:
|
|
145
|
-
|
|
145
|
+
JSON string with base64-encoded image data
|
|
146
146
|
"""
|
|
147
|
+
import base64
|
|
148
|
+
import json
|
|
147
149
|
from pathlib import Path
|
|
148
150
|
|
|
149
|
-
image_path = settings.output_dir /
|
|
151
|
+
image_path = settings.output_dir / filename
|
|
150
152
|
|
|
151
153
|
if not image_path.exists():
|
|
152
|
-
|
|
154
|
+
return json.dumps({"success": False, "error": f"Image not found: {filename}"})
|
|
153
155
|
|
|
154
156
|
if not image_path.is_relative_to(settings.output_dir):
|
|
155
|
-
|
|
157
|
+
return json.dumps({"success": False, "error": "Access denied: path outside output directory"})
|
|
158
|
+
|
|
159
|
+
image_data = base64.b64encode(image_path.read_bytes()).decode()
|
|
156
160
|
|
|
157
|
-
return
|
|
161
|
+
return json.dumps({
|
|
162
|
+
"success": True,
|
|
163
|
+
"filename": filename,
|
|
164
|
+
"image_base64": image_data,
|
|
165
|
+
"size": len(image_path.read_bytes())
|
|
166
|
+
}, indent=2)
|
|
158
167
|
|
|
159
168
|
logger.info("Ultimate Gemini MCP Server initialized successfully")
|
|
160
169
|
return mcp
|
|
File without changes
|
|
File without changes
|
{ultimate_gemini_mcp-1.0.14 → ultimate_gemini_mcp-1.0.15}/.github/workflows/claude-code-review.yml
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|