67 tools. Any MCP client. Framework-agnostic.
Updated March 2026
Sutrena has a Model Context Protocol server with 67 tools. Claude Code, Cursor, Windsurf, and any MCP client can connect and create forms, deploy pages, manage submissions, track analytics — all through tool calls. No REST boilerplate. No curl. Just tell your agent what you want. Framework-agnostic web runtime.
# Claude Code — add to your MCP config:
{
"mcpServers": {
"sutrena": {
"type": "streamable-http",
"url": "https://sutrena.com/api/mcp",
"headers": {
"Authorization": "Bearer YOUR_KEY"
}
}
}
}
# Then just talk to your agent:
# "Create a waitlist form with a Slack webhook"
# "Deploy a landing page for my new project"
# "Show me the last 20 submissions"Add the MCP server to your client config. Takes about 30 seconds. After that, your agent can create forms, deploy pages, and manage everything through tool calls.
MCP is relatively new. Not all AI clients support it yet. If yours does not, the REST API does everything the MCP tools do. Same endpoints, same responses. MCP is just a more natural interface for agents.
Add the MCP server config to your Claude Code settings. The URL is https://sutrena.com/api/mcp, authenticate with your API key as a Bearer token. Discovery endpoint at /.well-known/mcp.json has the full spec.
Yes. Any client that supports the Model Context Protocol can connect. The setup is the same — point the MCP client at https://sutrena.com/api/mcp with your Bearer token.
Same functionality, different interface. MCP tools let your AI agent call Sutrena directly through tool calls. The REST API is curl and HTTP requests. Same data, same limits, same authentication.
5 concurrent sessions per user. Sessions expire after 30 minutes of inactivity. Creating a new session when at the limit closes the oldest one.
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>"}'Get a trial API key instantly with no signup, or create an account for the full experience.