fix: update repo URLs and config path after transfer to mcp-servers org

- 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) <noreply@anthropic.com>
This commit is contained in:
2026-04-04 19:15:52 +00:00
parent 8a314a8a5b
commit 9d41be6c4f
+4 -4
View File
@@ -2,7 +2,7 @@
# install.sh - Install/upgrade gitea-mcp and configure global MCP server # install.sh - Install/upgrade gitea-mcp and configure global MCP server
# #
# Usage: # 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: # # or locally:
# bash install.sh # bash install.sh
# #
@@ -15,7 +15,7 @@
set -euo pipefail 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}" INSTALL_DIR="${GITEA_MCP_DIR:-$HOME/.gitea-mcp}"
BRANCH="${GITEA_MCP_BRANCH:-main}" BRANCH="${GITEA_MCP_BRANCH:-main}"
AUTO_YES="${AUTO_YES:-1}" AUTO_YES="${AUTO_YES:-1}"
@@ -461,11 +461,11 @@ echo ""
echo -e "${GREEN}=== Installation complete! ===${NC}" echo -e "${GREEN}=== Installation complete! ===${NC}"
echo "" echo ""
echo " Binary: $BINARY_PATH ($VERSION)" echo " Binary: $BINARY_PATH ($VERSION)"
echo " Config: $CLAUDE_SETTINGS" echo " Config: $CLAUDE_JSON"
echo " Source: $INSTALL_DIR" echo " Source: $INSTALL_DIR"
echo "" echo ""
echo "Restart Claude Code to load the new MCP server." echo "Restart Claude Code to load the new MCP server."
echo "" echo ""
echo "To upgrade later:" 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 "" echo ""