diff --git a/CHANGELOG.md b/CHANGELOG.md index 1302eff..4adbbf6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,45 @@ +## 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 diff --git a/config.py b/config.py index 4737c67..a29437b 100644 --- a/config.py +++ b/config.py @@ -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" diff --git a/pyproject.toml b/pyproject.toml index b98c4bc..ce94a83 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 = [ diff --git a/run-server.ps1 b/run-server.ps1 index b22b7c1..2a32195 100644 --- a/run-server.ps1 +++ b/run-server.ps1 @@ -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 } }