Service Ports
Service Ports
All QUI services bind to 127.0.0.1 (localhost only) — nothing is exposed to the network by default.
Native Services
These run directly on the host machine (not in Docker containers).
| Service | API Port | Frontend Port | Runtime |
|---|---|---|---|
| QUI Core | 10008 | 10009 | Python (uvicorn) |
| Mothership | 10000 | 11000 | Python (uvicorn) |
| Terminal Service | 3001 | — | Node.js |
| MCP Gateway | 8890 | — | Node.js (can also run as Docker) |
Docker Services
These run as Docker containers on the qui-network bridge.
| Service | Port | Container Name |
|---|---|---|
| Qui Anima | 10030 | qui-anima |
| M2M | 10020 | qui-m2m |
| Memory | 8001 | qui-memory |
| Cortex | 10040 | qui-cortex |
| Autothink | 10050 | qui-autothink |
| Thalamus | 10060 | qui-thalamus |
| ThinkThing | 10070 | qui-thinkthing |
| Qonscious | 10180 | qui-qonscious |
| FractalMind | 10092 | qui-fractalmind |
| Qleph | 10082 | qui-qleph |
| Voice | 3002 | qui-voice |
| Qllama (Ollama) | 11435 | qui-qllama |
Applications
| App | Port | Container Name |
|---|---|---|
| Strings | 10085 | qui-strings |
Database Containers
| Container | External Port | Internal Port | Purpose |
|---|---|---|---|
qui-postgres |
15432 | 5432 | Primary PostgreSQL (qui_core, qui_anima, qui_thinkthing, qui_qonscious) |
qui-memory-postgres |
15433 | 5432 | Memory PostgreSQL with pgvector extension (qui_memory) |
qui-redis |
16379 | 6379 | Redis cache |
Note: External ports (15432, 15433, 16379) are deliberately non-standard to avoid conflicts with any system-installed PostgreSQL or Redis.
Updated on Mar 21, 2026