crypto_researcher / postBuild
samsonleegh's picture
Update postBuild
3b424b1 verified
raw
history blame contribute delete
337 Bytes
#!/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