Deploy your first AI agent swarm in under 5 minutes. No DevOps experience required.
Head to the signup page and select your plan. All plans include a 7-day free trial.
After signup, you'll receive credentials for your dedicated Windows VM via email. Connect using Remote Desktop (RDP):
# Windows
mstsc /v:your-vm-ip:3389
# Mac
open rdp://your-vm-ip
# Linux
xfreerdp /v:your-vm-ip /u:Administrator
MoltBot Cloud VMs come fully configured. The following services are already running:
✅ OpenClaw Agent Gateway → port 18789
✅ Omnisphere LLM Router → port 3005
✅ FastAPI Agent Backend → port 8080
✅ ChromaDB Memory Store → port 8000
✅ Telegram Bot Integration → active
No installation or configuration needed — everything is ready to use.
Use the OpenAI-compatible API endpoint to start coding:
curl http://localhost:3005/v1/chat/completions \
-H "Content-Type: application/json" \
-d '{
"model": "auto",
"messages": [
{"role": "user", "content": "Build a REST API with Express.js that handles user authentication with JWT tokens"}
]
}'
Open http://localhost:8080 in your browser to access the MoltBot dashboard. From here you can:
📊 Monitor agent activity in real-time
🔧 Configure model preferences
📝 View conversation history
💾 Search persistent memory
📈 Track token usage and costs
Your VM includes a Telegram bot integration. Search for your bot in Telegram and start chatting — agents respond in real-time with code, file edits, and terminal output.