File size: 337 Bytes
03a6c78
 
 
3b424b1
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/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