gemini-bridge 1.0.3__tar.gz → 1.0.4__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: gemini-bridge
3
- Version: 1.0.3
3
+ Version: 1.0.4
4
4
  Summary: Lightweight MCP server bridging Claude Code to Google's Gemini AI via official CLI
5
5
  Author-email: Shelakh <info@shelakh.com>
6
6
  License-Expression: MIT
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: gemini-bridge
3
- Version: 1.0.3
3
+ Version: 1.0.4
4
4
  Summary: Lightweight MCP server bridging Claude Code to Google's Gemini AI via official CLI
5
5
  Author-email: Shelakh <info@shelakh.com>
6
6
  License-Expression: MIT
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "gemini-bridge"
7
- version = "1.0.3"
7
+ version = "1.0.4"
8
8
  description = "Lightweight MCP server bridging Claude Code to Google's Gemini AI via official CLI"
9
9
  readme = "README.md"
10
10
  license = "MIT"
@@ -5,5 +5,5 @@ Version 1.0.0 - Production ready, radically simplified.
5
5
 
6
6
  from .mcp_server import main
7
7
 
8
- __version__ = "1.0.3"
8
+ __version__ = "1.0.4"
9
9
  __all__ = ["main"]
@@ -19,7 +19,8 @@ from mcp.server.fastmcp import FastMCP
19
19
  logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(name)s - %(levelname)s - %(message)s')
20
20
  logger = logging.getLogger(__name__)
21
21
 
22
- mcp = FastMCP("gemini-assistant")
22
+ # FastMCP instance with correct port configuration
23
+ mcp = FastMCP("gemini-assistant", port=int(os.getenv("PORT", "8080")))
23
24
 
24
25
 
25
26
  def _normalize_model_name(model: Optional[str]) -> str:
File without changes
File without changes
File without changes