Three primitives: pages, forms, dashboards. 48 MCP tools. Framework-agnostic. Deploy, collect, analyze.
Updated March 2026
You can scaffold a form endpoint in minutes. But you 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.
Create once through the API or MCP tools. Sutrena handles retries, signing, rate limiting, dedup, and exports after that. That is the boring part, and boring is what breaks. The agent creates, Sutrena runs it.
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.
Getting an API key means OAuth, email verification, or manual approval. None of that works for an autonomous agent.
POST /api/trial gives you a working key instantly. No signup, no OAuth, no verification. Zero to live page or form in two API calls.
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 once. Sutrena handles retries, signing, rate limiting, dedup, and exports after that. That is the boring part, and boring is what breaks.
# 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"
# The agent now has access to 48 tools:
# create_form, list_forms, get_form, delete_form,
# create_page, list_pages, get_page, update_page, delete_page,
# list_submissions, get_submission, update_submission, create_dashboard,
# list_dashboards, get_dashboard, delete_dashboard,
# create_api_key, list_api_keys, get_account,
# list_templates, get_template, create_form_from_templateUse any template with templateId in POST /api/forms.
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/forms with templateId and createDashboard: true. Back comes a form URL and dashboard URL. No human steps in between. Same for pages -- POST /api/pages with HTML.
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.
Yes. MCP tools and REST API both handle reading submissions with pagination and sorting. Webhooks push every submission to any endpoint the agent controls.
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.