Sentway MCP

Build, publish, and read back sites over MCP.

Sentway is an MCP server. A connected AI can build a live web page, publish it under the user's Sentway account, gate who can see it, and read back submissions and visitor activity over the same connection.

Endpoint

Point any MCP client at this URL. Sentway authenticates every request against the connecting user's account.

Sentway MCP endpoint
https://sentway.app/api/public/mcp

What the tools let a connected AI do

Categories at a glance. The full contract for every tool is returned by get_authoring_guide, which an AI should call first.

Sites, pages, publish

Create or duplicate sites, add and update pages in HTML, JSX, Markdown, SVG, or Mermaid, and publish changes atomically.

Access control

Configure the site gate: public, email capture, magic-link verified email, allowlist, or password.

Submissions, visitors, analytics

Read form submissions, visitor timelines, active time, completed tasks, and per-visitor context.

get_authoring_guide

The single tool an AI should call first. Returns the attribute and tool contract the rest of the surface expects.

Connect your AI

Generic connect paths for the common MCP clients. Sentway authenticates every request against the connecting user's account, so each user completes this once for their own Sentway login.

Claude web (recommended, OAuth)

Open Claude connectors
  1. Open Claude connector settings (link opens in a new tab).
  2. Add custom connector. Name it Sentway. Paste the endpoint URL above.
  3. Approve on the Sentway consent screen when Claude opens it. You will be asked to sign in to Sentway if you are signed out.
  4. Enable the Sentway connector in Claude's composer.

Claude desktop (OAuth)

Open Claude connectors

Claude desktop shares its connector list with claude.ai. Add the connector once at Claude connectors, then enable it inside the desktop app's composer. Claude desktop does not expose a stable deep link to that panel; the app's own connector settings are reached from the composer's tool menu.

Claude Code (OAuth)

Run in a terminal:

claude mcp add --transport http sentway https://sentway.app/api/public/mcp

Claude Code opens the OAuth flow in your browser on first use.

Key-based clients (Cursor, custom scripts)

  1. In Sentway, open Settings, then MCP API keys, then Create key.
  2. Copy the swy_live_... value once. It is not shown again.
  3. Configure your client with:
{
  "mcpServers": {
    "sentway": {
      "type": "http",
      "url": "https://sentway.app/api/public/mcp",
      "headers": { "Authorization": "Bearer swy_live_..." }
    }
  }
}

Supported page formats

HTML, JSX, Markdown, SVG, Mermaid.