MultiConnect CLI
Deploy game servers, APIs, websites, and databases directly from the command line. No browser needed.
Features
Everything You Need in the Terminal
One-Command Deploys
Go from code to live in a single command instantly, seamlessly, automatically
Cross-Platform
Works on Windows, macOS, and Linux fast, stable, secure.
All Deployment Types
Game servers, APIs, websites, and databases.
Project Configuration
Interactive setup stores your project settings locally.
Auto-Detection
Automatically detects your project platform and suggests optimal settings.
CI/CD Ready
Easily integrate into GitHub Actions, GitLab CI, and more.
Quick Start
Get Running in Seconds
# Step 1: Initialize your project (one-time setup)
multiconnect init
# Step 2: Deploy your project
multiconnect deploy
# That's it — your app is live.
Sample Use Case - Deploy a Node.js API in Under 2 Minutes
Imagine you’ve built a REST API for your indie game’s leaderboard service. Here’s how you go from local code to a live, load-balanced API
# 1. Navigate to your project
cd ~/projects/my-leaderboard-api
# 2. Initialize MultiConnect (interactive — asks for app, plan, region, etc.)
multiconnect init
# → Select app: "LeaderboardService"
# → Platform detected: Node.js 20
# → Plan: Standard API (1 vCPU, 1 GB RAM)
# → Region: India
# → Min instances: 1, Max instances: 3
# → Auto-scaling: enabled (CPU threshold 70%)
# 3. Deploy
multiconnect deploy
# → Build uploaded (12 MB)
# → Container provisioned in India region
# → Health check passed
# → Live at: https://api.multiconnectcloud.com/apps/leaderboard-service
# 4. Later — push an update (zero-downtime blue/green deploy)
multiconnect deploy --tag v1.2
# → New container started alongside existing one
# → Health check passed → traffic switched to new version
# → Old container removed automatically
Reference
Why Developers Love CLI
| Feature | Benefit |
|---|---|
| multiconnect init | Interactive setup - no need to remember config options |
| multiconnect deploy | One command to build, upload, and provision |
| --tag flag | Version your deployments for easy rollback tracking |
| CI/CD friendly | Script deployments in your pipeline - no manual steps |
| Platform auto-detect | Detects .NET, Node.js, Python, Go, etc. automatically |
| Zero-downtime deploys | Blue/green deployment happens automatically on every deploy |