#!/usr/bin/env bash set -e # Clone and install the Node MCP server if [ ! -d "crypto-indicators-mcp" ]; then git clone https://github.com/kukapay/crypto-indicators-mcp.git fi cd crypto-indicators-mcp # Prefer ci if lockfile exists, else fall back to install if [ -f package-lock.json ]; then npm ci else npm install --omit=dev fi