Skip to content

Installation Guide

Complete installation instructions for RedQuanta MCP across all supported platforms.

Quick Installation

git clone https://github.com/sc4rfurry/RedQuanta-MCP.git
cd RedQuanta-MCP
npm install
npm run build
docker run -p 5891:5891 redquanta/mcp:latest

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

Verification

# Check installation
npm test

# Start server
npm run start:prod

Next Steps