Skip to main content
Glama
cbcoutinho

Nextcloud MCP Server

by cbcoutinho
bump-helm.sh1.89 kB
#!/bin/bash # Bump Helm chart version set -euo pipefail # Parse optional --increment flag INCREMENT="" while [[ $# -gt 0 ]]; do case $1 in --increment) INCREMENT="$2" shift 2 ;; *) echo "❌ Error: Unknown option: $1" >&2 echo "Usage: $0 [--increment PATCH|MINOR|MAJOR]" >&2 exit 1 ;; esac done # Validate dependencies command -v uv >/dev/null 2>&1 || { echo "❌ Error: uv not found" >&2 echo " Install from https://docs.astral.sh/uv/" >&2 exit 1 } # Validate Helm chart directory exists if [ ! -d "charts/nextcloud-mcp-server" ]; then echo "❌ Error: Must run from repository root (charts/ not found)" >&2 exit 1 fi cd charts/nextcloud-mcp-server # Validate Chart.yaml exists if [ ! -f "Chart.yaml" ]; then echo "❌ Error: Chart.yaml not found" >&2 exit 1 fi echo "Bumping Helm chart version..." if [ -n "$INCREMENT" ]; then echo " Forcing $INCREMENT bump" fi # Build commitizen command CZ_CMD="uv run cz --config .cz.toml bump --yes" if [ -n "$INCREMENT" ]; then CZ_CMD="$CZ_CMD --increment $INCREMENT" fi # Run commitizen bump and capture output if ! output=$($CZ_CMD 2>&1); then cd ../.. echo "❌ Error: Version bump failed" >&2 echo "$output" >&2 echo "" >&2 echo "Common causes:" >&2 echo " - No commits with scope 'helm' since last version" >&2 echo " - No conventional commits found (use feat(helm):, fix(helm):, etc.)" >&2 echo " - Git working directory not clean" >&2 exit 1 fi echo "$output" echo "" echo "✓ Helm chart version bumped successfully" echo " Updated: Chart.yaml:version" echo " Tag format: nextcloud-mcp-server-\${version}" echo " Note: appVersion stays at MCP server version" echo "" echo "Next steps:" echo " cd ../.." echo " git push --follow-tags" cd ../..

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/cbcoutinho/nextcloud-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server