Built For/AI Agent Operators

The web runtime for AI agents

Three primitives: pages, forms, dashboards. Framework-agnostic. Your agent deploys, humans interact, agent gets data back.

Updated March 2026

Problems we solve

Problem

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.

With Sutrena

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.

Problem

Most form tools are drag-and-drop UIs. An AI agent cannot click buttons in a visual editor.

With Sutrena

Everything in Sutrena is a JSON API call. Create forms, deploy pages, read submissions, build dashboards, manage webhooks. All programmatic. No UI required.

Problem

Agents need to understand what endpoints exist. Human-readable docs are not enough.

With Sutrena

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.

Problem

MCP-compatible tools are still rare. Agents using Claude Code or Cursor cannot create forms or deploy pages through their tool ecosystem.

With Sutrena

48 MCP tools covering the full lifecycle: create, list, read, delete forms, pages, and submissions, build dashboards, manage keys. Connect once, full access.

Problem

An agent can scaffold a form endpoint in minutes. But it cannot maintain webhook retries across sessions or debug delivery failures at 2 AM.

With Sutrena

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.

Get started

# 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"

Recommended templates

waitlistcontactfeedbackbug-reportnpssurveynewsletterclient-intake

Use any template with templateId in POST /api/forms.

FAQ

What can agents build with Sutrena?

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.

Which MCP clients are supported?

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.

Can an agent create a page and form without human intervention?

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.

How does the agent discover available APIs?

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.

What are the rate limits for agent API calls?

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.

Is the free plan enough for agents?

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.

What is Sutrena?

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.

Get started in two API calls

1. Get a trial key (no auth, no signup)

curl -X POST https://sutrena.com/api/trial

2. 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}'

Ready to build?

Get a trial API key instantly with no signup, or create an account for the full experience.

Sutrena for AI Agent Operators -- Web Runtime for AI Agents | Sutrena