100% Cloudflare Native
Built entirely on Cloudflare's stack — Workers, D1, R2, Vectorize, Durable Objects, Queues, and Workers AI. Zero external dependencies.
Multi-agent AI dashboard running entirely on Cloudflare's global edge network. No external servers, no cold starts, infinite scale.
Uranus runs 100% on Cloudflare's infrastructure with no external servers, databases, or services required.
| Service | Cloudflare Product | Purpose |
|---|---|---|
| Compute | Workers | Serverless API and business logic |
| State | Durable Objects | Per-agent isolated state with SQLite |
| Database | D1 | Global SQLite database |
| Storage | R2 | File uploads, screenshots, media |
| Vector DB | Vectorize | RAG embeddings and semantic search |
| AI | Workers AI | LLM inference (Llama, Mistral, etc.) |
| Queues | Queues | Async workflow execution |
| Static | Pages | React frontend hosting |
┌─────────────────────────────────────────────────────────────────┐
│ CLOUDFLARE GLOBAL EDGE │
│ 300+ Data Centers Worldwide │
├─────────────────────────────────────────────────────────────────┤
│ │
│ ┌─────────────┐ ┌─────────────┐ ┌─────────────────┐ │
│ │ Workers │ │ Durable │ │ Workers AI │ │
│ │ (API) │◄──►│ Objects │◄──►│ (LLM) │ │
│ └──────┬──────┘ └──────┬──────┘ └─────────────────┘ │
│ │ │ │
│ ▼ ▼ │
│ ┌─────────────┐ ┌─────────────┐ ┌─────────────────┐ │
│ │ D1 │ │ R2 │ │ Vectorize │ │
│ │ (SQLite) │ │ (Storage) │ │ (Embeddings) │ │
│ └─────────────┘ └─────────────┘ └─────────────────┘ │
│ │
│ ┌─────────────┐ ┌─────────────┐ │
│ │ Queues │ │ Pages │ │
│ │ (Async) │ │ (Frontend) │ │
│ └─────────────┘ └─────────────┘ │
│ │
└─────────────────────────────────────────────────────────────────┘Durable Objects provide instant state access without cold start latency.
Automatically scales from 0 to millions of requests with no configuration.
Your agents run in 300+ cities, close to your users everywhere.
Single wrangler deploy command. No infrastructure to manage.
Pay only for what you use. Free tier includes 100K requests/day.
# Clone the repository
git clone https://github.com/anthropics/uranus.git
cd uranus/manage
# Install dependencies
npm install
# Deploy to Cloudflare
npx wrangler deploy| Layer | Cloudflare Product |
|---|---|
| Frontend | Pages (React 18, TypeScript, Vite) |
| API | Workers |
| Agent State | Durable Objects + SQLite |
| Database | D1 |
| Storage | R2 |
| Vector Search | Vectorize |
| AI Inference | Workers AI |
| Async Jobs | Queues |