https://github.com/hanzoai/cloud
Unified AI infrastructure and MCP management platform
https://github.com/hanzoai/cloud
ai-cloud infrastructure management-platform mcp
Last synced: 22 days ago
JSON representation
Unified AI infrastructure and MCP management platform
- Host: GitHub
- URL: https://github.com/hanzoai/cloud
- Owner: hanzoai
- License: apache-2.0
- Created: 2025-06-01T20:14:31.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2026-05-13T04:41:52.000Z (28 days ago)
- Last Synced: 2026-05-13T06:36:27.132Z (28 days ago)
- Topics: ai-cloud, infrastructure, management-platform, mcp
- Language: Go
- Homepage: https://api.hanzo.ai
- Size: 12.6 MB
- Stars: 1
- Watchers: 0
- Forks: 1
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Hanzo Cloud
The unified Go binary that imports every Hanzo-native subsystem and dispatches
requests per deployment configuration. One artifact, many subsystems.
Per [HIP-0106](https://github.com/hanzoai/HIPs/blob/main/HIPs/hip-0106-unified-hanzo-cloud-binary.md).
## Subsystems mounted
- `iam` — identity & access
- `base` — per-tenant SQLite + extension runtimes (per HIP-0105)
- `kms` — secrets
- `commerce` — checkout, billing, pricing, invoicing (light router; NOT in PCI-DSS scope)
- `ai` — LLM control plane / RAG / model hub / MCP management (was hanzoai/cloud pre-rename)
- `gateway` — HTTP routing + policy
- `o11y` — metrics / traces / logs
- `vfs` — virtual filesystem / object-store abstraction
- `mq` — message queue
- `dns`, `amqp`, `mcp`, `auto`, `tasks`, ... (full list per HIP-0106)
## Deployment modes
Same binary; different startup configuration:
```bash
cloud --enable=iam,base,kms,commerce,ai,gateway,o11y --brand=hanzo --domain=hanzo.ai
cloud --enable=iam,base,kms,commerce,ai,gateway,o11y --brand=osage --domain=osage.cloud
cloud --enable=iam,base,kms,commerce,ai,gateway,o11y --brand=lux --domain=lux.cloud
cloud --enable=iam,base,kms,commerce,ai,gateway,o11y --brand=zoo --domain=zoo.cloud
```
## White-label fork pattern
Customers fork `hanzoai/cloud` to launch their own ecosystem in one binary. Brand
detection, enabled subsystems, ZAP endpoints (payments / vault backends) are all
deployment configuration.
## Web framework
[hanzoai/zip](https://github.com/hanzoai/zip) — Sinatra-style Go web framework
built on Fiber v3. The ONE Go web framework. No `.Fast` escape hatch.
## Status
Scaffold. The Mount(app, deps) integration for each subsystem lands per
HIP-0106's migration phases.