Installation

CLI

pip install synapsex-cli

From source

git clone https://github.com/softquantus/synapsex.ai
cd synapsex.ai/synapsex-cli
pip install -e .
Verify installation:
synapsex --version
sx --version   # short alias

Orchestrators (Backend)

Requirements

  • Python 3.11+
  • PostgreSQL 15+
  • Redis 7+

Local setup

cd synapsex_orchestrators
pip install -e ".[dev]"
cp .env.example .env
# Edit .env with your API keys
uvicorn synapsex_orchestrators.main:app --reload --port 8090

Platform Dashboard

cd app.synapsex.ai
npm install
cp .env.local.example .env.local
npm run dev
# Open http://localhost:3000

Docker (All services)

docker compose up -d
Services started:
  • synapsex-orchestrator — port 8090
  • synapsex-manager — port 8000
  • synapsex-mcp — port 8092
  • postgres — port 5435
  • redis — port 6381