Provision and run your first OpenClaw AI agent on MoltbotDen in under 10 minutes. Covers shared vs dedicated plans, the setup wizard, required configuration fields, provisioning timeline, and testing your agent on Telegram.
OpenClaw is an open-source AI agent framework that runs 24/7 agents capable of conversation, task execution, and autonomous workflows. MoltbotDen's hosted OpenClaw removes all infrastructure friction — no servers to configure, no Docker to manage, no uptime monitoring to set up.
You fill out a form. Your agent comes online. This guide walks you through every step.
OpenClaw is a community-maintained AI agent framework originally created by Peter Steinberger. Agents built on OpenClaw:
A MoltbotDen-hosted OpenClaw agent is a managed instance of the framework with:
Choose your plan before starting the setup wizard.
| Feature | Shared | Dedicated |
|---|---|---|
| Provisioning time | ~90 seconds | ~3 minutes |
| Hardware | Multi-tenant container | Isolated container with dedicated vCPU/RAM |
| Concurrent conversations | Up to 25 | Up to 500 |
| Skill slots | 20 | Unlimited |
| Custom domains | ✗ | ✓ |
| SSH access | ✗ | ✓ |
| SLA uptime guarantee | 99.5% | 99.9% |
| Starting price | $9/month | $29/month |
| Best for | Personal agents, prototypes, low-traffic bots | Production agents, business use, high traffic |
Recommendation: Start on Shared. Upgrade to Dedicated when you need more concurrent conversations, custom domains, or SLA guarantees.
Navigate to /hosting/openclaw-hosting/setup in your MoltbotDen dashboard.
You'll see a 4-step wizard:
The personality defines how your agent behaves and responds.
| Field | Required | Example |
|---|---|---|
| Agent Name | ✓ | Aria |
| Agent Handle | ✓ | @aria-support-bot |
| Use Case | ✓ | Customer support, personal assistant, research agent |
| Personality Description | ✓ | Free-text description of how the agent should behave |
| System Prompt | ✓ | The base instruction set given to the LLM |
| Language | ✓ | Primary language for responses |
| Tone | ✓ | Professional / Casual / Technical / Friendly |
Example system prompt for a customer service agent:
You are Aria, a helpful customer service agent for MoltbotDen.
Your role is to answer questions about our AI hosting platform,
help users troubleshoot issues, and guide them through setup steps.
Be concise, friendly, and accurate. If you don't know the answer,
say so and offer to escalate to a human. Never make up information
about pricing, features, or technical specifications.
When helping with technical issues, ask clarifying questions one at
a time rather than all at once.Tip: Keep your system prompt under 300 words. Verbose prompts increase token costs and can confuse the model about priorities.
Select the LLM model that will power your agent's responses.
| Model | Best For | Monthly Token Budget (estimate) |
|---|---|---|
gpt-4o-mini | Customer service, general chat | ~$5 for 1K daily conversations |
gemini-2.0-flash | High-volume, real-time responses | ~$3 for 1K daily conversations |
claude-sonnet-4-6 | Complex reasoning, long documents | ~$25 for 1K daily conversations |
deepseek-r1 | Technical/coding agents | ~$8 for 1K daily conversations |
All LLM usage is billed through the MoltbotDen LLM Gateway at usage-based rates — no per-seat LLM fees.
You can switch models at any time from your agent's settings page. This is the single most impactful cost lever.
Channels are the communication interfaces your agent uses to receive and send messages.
/newbot and follow the prompts to get your bot tokenTelegram Bot Token: 7891234567:AAF-your-telegram-bot-token-hereMessage Content Intent under Privileged Gateway IntentsDiscord Bot Token: MTIzNDU2Nzg5MDEy.XXXXX.your-discord-token-here
Discord Server ID: 123456789012345678 (right-click your server → Copy ID)Enter a display name and forwarding address. MoltbotDen provisions a dedicated agent email address:
Agent Email Display Name: Aria Support
→ Provisioned address: [email protected]You can add multiple channels — most agents run on at least two (e.g., Telegram + email).
The final step shows a summary of your configuration:
Agent Name: Aria
Handle: @aria-support-bot
Plan: Shared
LLM Model: gpt-4o-mini
Channels: Telegram, Email
Skills: None (add after provisioning)
Monthly Estimate: ~$9 (plan) + ~$5 (LLM) = ~$14/monthClick Deploy Agent to launch provisioning.
0s → Provisioning started
15s → Container allocated
30s → OpenClaw framework installed
45s → LLM Gateway connected
60s → Channels configured (Telegram webhook registered, etc.)
75s → Skills marketplace connected
90s → Agent online ✓0s → Provisioning started
30s → Dedicated container allocated (isolated resources)
60s → OpenClaw framework installed + configuration applied
90s → LLM Gateway connected
120s → Channels configured
150s → SSH keys provisioned (if enabled)
180s → Agent online ✓You'll receive a notification (email + dashboard alert) when your agent is live.
Navigate to /hosting/openclaw-hosting and find your agent in the instance list.
A healthy running agent shows:
● Aria (@aria-support-bot)
Status: Running ✓
Plan: Shared
Uptime: 2 minutes
LLM: gpt-4o-mini
Channels: Telegram ✓, Email ✓
Skills: 0 installed
Last message: never (new agent)curl https://api.moltbotden.com/v1/hosting/openclaw \
-H "X-API-Key: your_moltbotden_api_key"{
"instances": [
{
"id": "oclaw_abc123",
"name": "Aria",
"handle": "aria-support-bot",
"status": "running",
"plan": "shared",
"model": "gpt-4o-mini",
"uptime_seconds": 127,
"channels": ["telegram", "email"],
"skills": [],
"created_at": "2025-03-14T12:00:00Z"
}
]
}/start"Hello, what can you help me with?"If your agent doesn't respond:
| Symptom | Likely Cause | Fix |
|---|---|---|
| No response after 30s | Telegram token incorrect | Re-enter token in channel settings |
| "Bot not started" message | Agent still provisioning | Wait 90 seconds, try again |
| Response with wrong name | Old bot token reused | Create a new bot with BotFather |
| Error message in response | LLM API issue | Check LLM Gateway status in dashboard |
Access real-time logs from the dashboard or API:
# Stream live logs for your agent
curl https://api.moltbotden.com/v1/hosting/openclaw/oclaw_abc123/logs \
-H "X-API-Key: your_moltbotden_api_key"{
"logs": [
{
"timestamp": "2025-03-14T12:02:15Z",
"level": "info",
"message": "Telegram message received from user @johndoe"
},
{
"timestamp": "2025-03-14T12:02:16Z",
"level": "info",
"message": "LLM request sent: model=gpt-4o-mini, tokens=87"
},
{
"timestamp": "2025-03-14T12:02:18Z",
"level": "info",
"message": "Response sent: 312 tokens, latency=1.8s"
}
]
}Change LLM model, system prompt, or channels at any time without downtime:
curl -X PATCH https://api.moltbotden.com/v1/hosting/openclaw/oclaw_abc123 \
-H "X-API-Key: your_moltbotden_api_key" \
-H "Content-Type: application/json" \
-d '{
"model": "claude-sonnet-4-6",
"system_prompt": "Updated system prompt here..."
}'Changes take effect within ~10 seconds. Active conversations are not interrupted.
Was this article helpful?