MCP

Seiton MCP server

MCP-compatible clients query your analytics and manage your account through natural language. Same functionality, permissions, and safety checks as the REST API and CLI.

AI agent or LLM? Read this page as markdown

Streamable HTTP at https://www.seiton.online/api/mcp. Authorize with Authorization: Bearer sei_xxx.

Step 1 — Create an account token

Open Settings → API / MCP. Pick websites, choose read/write per resource, name the token, and copy the sei_ secret. It is shown once.

Step 2 — Connect your client

Codex

codex mcp add seiton \
  --url https://www.seiton.online/api/mcp \
  --bearer-token-env-var SEITON_TOKEN

Claude Code

claude mcp add --transport http seiton https://www.seiton.online/api/mcp \
  --header "Authorization: Bearer sei_xxx"

Cursor, Claude Desktop, and other config-based clients

{
  "mcpServers": {
    "seiton": {
      "url": "https://www.seiton.online/api/mcp",
      "headers": {
        "Authorization": "Bearer sei_xxx"
      }
    }
  }
}

Stdio clients

{
  "mcpServers": {
    "seiton": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://www.seiton.online/api/mcp",
        "--header",
        "Authorization: Bearer sei_xxx"
      ]
    }
  }
}

What to ask

After the token is in Cursor, Claude Code, or Codex, paste one of these. The agent calls Seiton — you do not open the dashboard.

Ask this from Cursor

Create a scoped token, connect MCP, then ask in plain English. The agent calls the same API as the dashboard.

  • Based on Seiton, what should I do this morning?

  • Is revenue healthy? Any failed payments worth recovering?

  • Churn is up — what's the signal, and what should I ship?

Create a token · Connect MCP · CLI

Tools

Naming pattern: seiton_<resource>_<action>. Examples: seiton_health_overview, seiton_briefing_get, seiton_projects_list.

Safety

  • Confirmation gate. Irreversible tools require confirm: true. Without it they return a preview.
  • No secret exfiltration. Listing tokens returns metadata only.
  • Dashboard-only. Website deletion and connecting payment providers stay in the dashboard.
  • Scoped by token. Permissions are re-validated on every call.

Docs · API · MCP · CLI · Create a token · hello@seiton.online