Features/MCP Server

MCP Server

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.

What it does

  • 67 MCP tools covering the full lifecycle — create, read, update, delete
  • Compound tools — launch (deploy site), collect (create form + webhooks), status (project overview)
  • Forms — create, update, delete, list, search submissions, export CSV
  • Pages — create pages, update HTML/CSS, list pages, delete, upload assets
  • Webhooks — create, test, list, get delivery logs, delete
  • Account — check usage, set subdomain, manage custom domains (with instant environment switching), manage API keys
  • Submissions — upsert by external ID, update individual submissions, GDPR deletion by email
  • Discovery at /.well-known/mcp.json — standard MCP endpoint
  • Connect at /api/mcp with Bearer token — same key you use for the REST API
  • Works in Claude Code, Cursor, Windsurf, and any MCP-compatible client

How it works

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

What it does not do

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.

FAQ

How do I connect Sutrena to Claude Code?

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.

Does this work with Cursor and Windsurf?

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.

What is the difference between MCP and the REST API?

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.

How many MCP sessions can I have?

5 concurrent sessions per user. Sessions expire after 30 minutes of inactivity. Creating a new session when at the limit closes the oldest one.

What is Sutrena?

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

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 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>"}'

Ready to build?

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

MCP Server — 67 Tools for AI Agents | Sutrena | Sutrena