Three primitives: pages, forms, dashboards. Framework-agnostic. Your agent deploys, humans interact, agent gets data back.
Updated March 2026
Most tools are drag-and-drop UIs. An AI agent cannot click buttons. And even when it can scaffold a backend, it cannot maintain webhook retries and delivery failures at 2 AM.
Sutrena is JSON all the way down. The agent deploys a page, creates a form, builds a dashboard -- all through API calls. The value is not the initial build. It is the ongoing reliability. Sutrena handles retries, signing, dedup, and exports after setup.
Most form tools are drag-and-drop UIs. An AI agent cannot click buttons in a visual editor.
Everything in Sutrena is a JSON API call. Create forms, deploy pages, read submissions, build dashboards, manage webhooks. All programmatic. No UI required.
Agents need to understand what endpoints exist. Human-readable docs are not enough.
Machine-readable schema at /api/schema. Agent docs at /llms.txt and /llms-full.txt. MCP manifest at /.well-known/mcp.json. Pick your format.
MCP-compatible tools are still rare. Agents using Claude Code or Cursor cannot create forms or deploy pages through their tool ecosystem.
48 MCP tools covering the full lifecycle: create, list, read, delete forms, pages, and submissions, build dashboards, manage keys. Connect once, full access.
An agent can scaffold a form endpoint in minutes. But it cannot maintain webhook retries across sessions or debug delivery failures at 2 AM.
The value is not the initial build. It is the ongoing reliability. Your agent creates the form and deploys the page once. Sutrena handles retries, signing, rate limiting, dedup, and exports after that. That is the boring part, and boring is what breaks.
# Deploy a page via the API
curl -X POST https://sutrena.com/api/pages \
-H "Authorization: Bearer st_live_your_key" \
-H "Content-Type: application/json" \
-d '{
"name": "Product Launch",
"html": "<html><body><h1>We are live</h1><p>Sign up below.</p></body></html>"
}'
# Returns: { "id": "pg_abc", "url": "https://sutrena.com/p/pg_abc" }
# Create a form for collecting signups
curl -X POST https://sutrena.com/api/forms \
-H "Authorization: Bearer st_live_your_key" \
-H "Content-Type: application/json" \
-d '{"templateId": "waitlist", "createDashboard": true}'
# Add Sutrena MCP server to Claude Code
claude mcp add sutrena \
--transport streamable-http \
https://sutrena.com/api/mcp \
--header "Authorization: Bearer st_live_your_key"Use any template with templateId in POST /api/forms.
Agents can deploy HTML pages (landing pages, status pages, documentation), create data collection forms, build analytics dashboards, and wire up webhooks -- all through the API or MCP tools. The two primitives -- pages and forms -- cover most agent use cases for publishing content and collecting structured data.
Anything that does streamable-http transport. Claude Code, Cursor, Windsurf, custom agents built on the MCP SDK. Server is at https://sutrena.com/api/mcp.
Yes. POST /api/trial for a key, POST /api/pages with HTML, POST /api/forms with templateId and createDashboard: true. Back come a page URL, a form URL, and a dashboard URL. No human steps in between.
Three options: /llms.txt for a quick overview, /llms-full.txt for the complete reference, /api/schema for structured JSON. MCP clients get tool definitions automatically on connect.
Trial key creation: 5 per 24 hours per IP. After that, API calls follow your plan quotas (form count, page count, submission count). No per-request rate limiting on paid plans.
The free plan gives you 10 projects permanently. For agents that need more, Builder at $9/month gives 50 projects, Pro at $29/month gives 200 projects with unlimited submissions.
Sutrena is the web runtime for AI agents. Three primitives — pages, forms, and dashboards — accessible through one API. Your agent creates web artifacts, humans interact with them, and your agent gets the data back. Framework-agnostic. Works from any MCP client or HTTP client.
1. Get a trial key (no auth, no signup)
curl -X POST https://sutrena.com/api/trial2. Create a form + dashboard from a template
curl -X POST https://sutrena.com/api/forms \
-H "Authorization: Bearer st_trial_xxx" \
-H "Content-Type: application/json" \
-d '{"templateId": "waitlist", "createDashboard": true}'Get a trial API key instantly with no signup, or create an account for the full experience.