Four tools or one?
Most projects need hosting, forms, analytics, and notifications. That means four accounts, four billing pages, four sets of docs, and four API keys. You spend more time gluing services together than building the thing you actually care about.
Sutrena puts all four under one account. Deploy a site, collect form submissions, track visitors, and send webhook notifications. One API key. One bill. One place to check when something breaks.
The separate-tool stack runs about $57 per month. Sutrena Pro is $29/month.
| Feature | Sutrena | Separate Tools |
|---|---|---|
| Host a site | Included (all plans) | Vercel ($20/mo) |
| Collect form data | Included (all plans) | Formspree ($8/mo) |
| Web analytics | Included (privacy-first) | Plausible ($9/mo) |
| Webhook notifications | Included (HMAC-signed) | Zapier ($20/mo) |
Separate tools total: ~$57/month. Sutrena Pro: $29/month.
Honest trade-offs. Sutrena does not replace everything.
$29/month
~$57/month
Sutrena is the web runtime for AI agents. Forms, Pages, Analytics, Webhooks, Automations — all through 67 MCP tools and one REST API. Your agent creates web artifacts, humans interact with them, and your agent gets the data back. Use any one feature or all of them together.
Pages
Deploy HTML instantly
Forms
Collect structured data
Automations
DSL-based pipelines with 14 step types
Analytics
Privacy-first, no cookies
Webhooks
Slack, Discord, Telegram
1. Get a trial key (no auth, no signup)
curl -X POST https://sutrena.com/api/trial2. Create anything — a page, form, automation, or analytics site
# Create a form
curl -X POST https://sutrena.com/api/forms \
-H "Authorization: Bearer st_trial_xxx" \
-H "Content-Type: application/json" \
-d '{"name": "waitlist", "fields": [{"name": "email", "label": "Email", "type": "email", "required": true}]}'
# Or deploy a page
curl -X POST https://sutrena.com/api/pages \
-H "Authorization: Bearer st_trial_xxx" \
-H "Content-Type: application/json" \
-d '{"slug": "index", "title": "My Site", "html": "<h1>Live</h1>"}'Grab a trial API key. No signup, no credit card. Deploy a page, create a form, and start collecting analytics in under five minutes.