Installation Guide¶
Complete installation instructions for RedQuanta MCP across all supported platforms.
Quick Installation¶
Download from GitHub Releases
Platform-Specific Setup¶
Windows¶
# Install Node.js 20 LTS
winget install OpenJS.NodeJS.LTS
# Clone and setup
git clone https://github.com/sc4rfurry/RedQuanta-MCP.git
cd RedQuanta-MCP
npm install
npm run build
Linux¶
# Install Node.js
curl -fsSL https://deb.nodesource.com/setup_20.x | sudo -E bash -
sudo apt-get install -y nodejs
# Clone and setup
git clone https://github.com/sc4rfurry/RedQuanta-MCP.git
cd RedQuanta-MCP
npm install
npm run build
macOS¶
# Install Node.js
brew install node@20
# Clone and setup
git clone https://github.com/sc4rfurry/RedQuanta-MCP.git
cd RedQuanta-MCP
npm install
npm run build