Merge remote-tracking branch 'origin/main'

This commit is contained in:
Fahad
2025-10-17 08:45:04 +04:00
4 changed files with 45 additions and 6 deletions

View File

@@ -2,6 +2,45 @@
<!-- version list -->
## v9.0.3 (2025-10-16)
### Bug Fixes
- Remove duplicate -o json flag in gemini CLI config
([`3b2eff5`](https://github.com/BeehiveInnovations/zen-mcp-server/commit/3b2eff58ac0e2388045a7442c63f56ce259b54ba))
### Chores
- Sync version to config.py [skip ci]
([`b205d71`](https://github.com/BeehiveInnovations/zen-mcp-server/commit/b205d7159b674ce47ebc11af7255d1e3556fff93))
## v9.0.2 (2025-10-15)
### Bug Fixes
- Update Claude CLI commands to new mcp syntax
([`a2189cb`](https://github.com/BeehiveInnovations/zen-mcp-server/commit/a2189cb88a295ebad6268b9b08c893cd65bc1d89))
### Chores
- Sync version to config.py [skip ci]
([`d08cdc6`](https://github.com/BeehiveInnovations/zen-mcp-server/commit/d08cdc6691e0f68917f2824945905b7256e0e568))
## v9.0.1 (2025-10-14)
### Bug Fixes
- Add JSON output flag to gemini CLI configuration
([`eb3dff8`](https://github.com/BeehiveInnovations/zen-mcp-server/commit/eb3dff845828f60ff2659586883af622b8b035eb))
### Chores
- Sync version to config.py [skip ci]
([`b9408aa`](https://github.com/BeehiveInnovations/zen-mcp-server/commit/b9408aae8860d43b1da0ba67f9db98db7e4de2cf))
## v9.0.0 (2025-10-08)
### Chores

View File

@@ -14,9 +14,9 @@ from utils.env import get_env
# These values are used in server responses and for tracking releases
# IMPORTANT: This is the single source of truth for version and author info
# Semantic versioning: MAJOR.MINOR.PATCH
__version__ = "9.0.0"
__version__ = "9.0.3"
# Last update date in ISO format
__updated__ = "2025-10-08"
__updated__ = "2025-10-16"
# Primary maintainer
__author__ = "Fahad Gilani"

View File

@@ -1,6 +1,6 @@
[project]
name = "zen-mcp-server"
version = "9.0.0"
version = "9.0.3"
description = "AI-powered MCP server with multiple model providers"
requires-python = ">=3.9"
dependencies = [

View File

@@ -1489,18 +1489,18 @@ function Test-ClaudeCliIntegration {
Write-Info "Claude CLI detected - checking configuration..."
try {
$claudeConfig = claude config list 2>$null
$claudeConfig = claude mcp list 2>$null
if ($claudeConfig -match "zen") {
Write-Success "Claude CLI already configured for zen server"
}
else {
Write-Info "To add zen server to Claude CLI, run:"
Write-Host " claude config add-server zen $PythonPath $ServerPath" -ForegroundColor Cyan
Write-Host " claude mcp add -s user zen $PythonPath $ServerPath" -ForegroundColor Cyan
}
}
catch {
Write-Info "To configure Claude CLI manually, run:"
Write-Host " claude config add-server zen $PythonPath $ServerPath" -ForegroundColor Cyan
Write-Host " claude mcp add -s user zen $PythonPath $ServerPath" -ForegroundColor Cyan
}
}