From 9d41be6c4fabe04107e501160b3ae90853c5879b Mon Sep 17 00:00:00 2001 From: Chaim Date: Sat, 4 Apr 2026 19:15:52 +0000 Subject: [PATCH] fix: update repo URLs and config path after transfer to mcp-servers org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - REPO_URL: Chaim/gitea-mcp → mcp-servers/gitea-mcp - curl install URL in header and footer - Config output: $CLAUDE_SETTINGS → $CLAUDE_JSON (correct file for MCP) Co-Authored-By: Claude Opus 4.6 (1M context) --- install.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/install.sh b/install.sh index 1a02980..87b86d6 100755 --- a/install.sh +++ b/install.sh @@ -2,7 +2,7 @@ # install.sh - Install/upgrade gitea-mcp and configure global MCP server # # Usage: -# curl -fsSL https://gitea.dev.marcus-law.co.il/Chaim/gitea-mcp/raw/branch/main/install.sh | bash +# curl -fsSL https://gitea.dev.marcus-law.co.il/mcp-servers/gitea-mcp/raw/branch/main/install.sh | bash # # or locally: # bash install.sh # @@ -15,7 +15,7 @@ set -euo pipefail -REPO_URL="https://gitea.dev.marcus-law.co.il/Chaim/gitea-mcp.git" +REPO_URL="https://gitea.dev.marcus-law.co.il/mcp-servers/gitea-mcp.git" INSTALL_DIR="${GITEA_MCP_DIR:-$HOME/.gitea-mcp}" BRANCH="${GITEA_MCP_BRANCH:-main}" AUTO_YES="${AUTO_YES:-1}" @@ -461,11 +461,11 @@ echo "" echo -e "${GREEN}=== Installation complete! ===${NC}" echo "" echo " Binary: $BINARY_PATH ($VERSION)" -echo " Config: $CLAUDE_SETTINGS" +echo " Config: $CLAUDE_JSON" echo " Source: $INSTALL_DIR" echo "" echo "Restart Claude Code to load the new MCP server." echo "" echo "To upgrade later:" -echo " curl -fsSL https://gitea.dev.marcus-law.co.il/Chaim/gitea-mcp/raw/branch/main/install.sh | bash" +echo " curl -fsSL https://gitea.dev.marcus-law.co.il/mcp-servers/gitea-mcp/raw/branch/main/install.sh | bash" echo ""