Want a free personalized recommendation for your software stack?Get yours
That Marketing Buddy
Home/MCP/Sequenzy
Sequenzy

Sequenzy MCP Server

Yes. Sequenzy has an official MCP server, hosted at api.sequenzy.com/v1/mcp.

OFFICIAL MCP✓ alivePublic APIAuth: api-key
MCP status verified 2026-07-02Agent-readiness 8/10
Data from Buddy's database, auto-rechecked weekly

What is the Sequenzy MCP server?

Sequenzy runs an official MCP server on its own domain, and it is one of the most complete I have tested on an email tool. It exposes 120 tools spanning subscribers, lists, segments, campaigns, sequences, transactional sends, landing pages, A/B tests, analytics, team and inbox, webhooks, and AI generation.

You connect it two ways: a hosted Streamable HTTP endpoint at api.sequenzy.com/v1/mcp for clients that support remote MCP, or a local stdio server via npx @sequenzy/mcp. Every tool ships structured outputs (outputSchema) plus readOnlyHint, destructiveHint and openWorldHint annotations, so an agent gets typed, safe results and knows which calls mutate data.

For the rest of the picture see the Sequenzy review, full pricing breakdown, .

Inside Claude / Cursor / Codex

What you can build with the Sequenzy MCP

Illustrative workflow examples. Exact tool names, parameters, and outputs come from Sequenzy's MCP server schema — check the docs for the live surface.

sequenzy-mcplive
>What's the open rate on my last 5 campaigns?
sequenzy.list_campaigns({ limit: 5 })
LAST 5 CAMPAIGNS · OPEN RATE
Black Friday Teaser42.1%
Product launch38.5%
Weekly digest #1227.0%
Welcome flow step 261.3%
Re-engagement attempt9.8%
Draft A/B subject lines for the bottom two?
sequenzy-mcplive
>Build a 3-email welcome sequence for new trial users
sequenzy.create_sequence({ name: "Trial Welcome", trigger: "subscriber_added" })
SEQUENCE CREATED · 3 EMAILS
Day 0welcome + getting started
Day 2key feature walkthrough
Day 5upgrade nudge + 14-day trial
Enroll existing trial subscribers with enroll_subscribers_in_sequence?
sequenzy-mcplive
>Draft three subject lines for my spring launch campaign
sequenzy.generate_subject_lines({ topic: "spring launch", count: 3 })
AI-GENERATED · 3 SUBJECT LINES
1Spring's biggest update is live
2You asked, we shipped it
3New season, new workflow
TMB SCORE FOR SequenzyMCP: OfficialAgent fit: 8/10
Read review →

Which AI clients can use Sequenzy MCP?

Not every AI assistant supports MCP natively. Per-client picture for Sequenzy:

ClientSupportNotes
Claude (Desktop/Web)Native MCPAdd the @sequenzy/mcp server to your Claude Desktop config with SEQUENZY_API_KEY.
Claude CodeNative MCPRuns the @sequenzy/mcp stdio server; full 113-tool access.
CodexNative MCPSupported MCP client per Sequenzy docs.
CursorNative MCPAdd the stdio MCP server with your API key.
WindsurfNative MCPListed as a supported MCP client.

How to connect Sequenzy MCP to Claude Desktop

Add this block to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows), then restart Claude Desktop. Cursor and Codex use a similar schema.

{
  "mcpServers": {
    "sequenzy": {
      "command": "npx",
      "args": ["mcp-remote", "<YOUR_MCP_URL>"]
    }
  }
}
// HTTP-transport MCP. Get your <YOUR_MCP_URL> from the vendor dashboard.
// Server source: https://api.sequenzy.com/v1/mcp
// Claude Code (one-liner): claude mcp add sequenzy <YOUR_MCP_URL> --transport http

Some MCP servers require an API key. Check the source page for setup: api.sequenzy.com/v1/mcp.

Does Sequenzy MCP cost extra?

Included with subscription

Sequenzy ships an official MCP server that uses your existing subscription credentials.

  • No separate MCP licence to buy. You pay for your Sequenzy plan, the MCP server queries that account.
  • Whether it's gated to a specific tier wasn't extracted automatically — verify the access requirements on the MCP page or pricing docs.

Sequenzy also publishes a REST API

Sequenzy publishes an API, but per-tier gating wasn't extracted automatically.

Auth method
api-key
SDK languages
OpenAPI spec
Webhooks
available
Structured outputs
yes
See Sequenzy API page

What you can do with Sequenzy from an AI agent

Three shapes of agent workflow. Pick the row that matches how you actually use Claude / Cursor / Codex day to day.

INDIE / SOLO

Skip the dashboard, ask Claude

  • "What campaigns underperformed this week?" answered in seconds
  • Quick one-off questions without leaving the editor
  • Pipe Sequenzy data into your personal notes / docs without writing a script
Effort: 30 seconds — paste the config, restart Claude
AGENCY

Run client analysis at agent speed

  • Hand the MCP server to your team — every consultant can ask Claude about any client's Sequenzy account
  • Multi-account workflows without context-switching the Sequenzy UI
  • Reports you'd normally spend hours on, done before standup
Effort: An afternoon — set up auth per client
IN-HOUSE TEAM

Production agent workflows

  • Embed in your internal Codex / Cursor agents that triage Sequenzy data daily
  • Combine with other MCP servers in a multi-step agent chain
  • Constrain agents to read-only roles to keep production Sequenzy safe
Effort: Days — security review + role config

Limits and gotchas

  • Official MCP server — published by Sequenzy themselves, so it should track product changes.
  • Fallback: the REST API works for any flow the MCP server doesn't cover.
  • Auth flow: MCP servers usually inherit the underlying API auth method (api-key). Expect to configure that on first install.
  • Rate limits: MCP calls count against your underlying Sequenzy API quota. Burst usage from a curious agent can drain a daily allowance fast.
8/10

Agent-readiness verdict

Top tier for an email platform. An official 120-tool MCP, dual transport, and structured outputs mean an agent like Claude Code can run your whole email operation with little glue code. Authenticate with a personal API key and go.

Strong agent fit, top tier for an email tool. Sequenzy ships an official MCP server exposing 120 tools on its own domain, offered both as a hosted Streamable HTTP endpoint (api.sequenzy.com/v1/mcp) and a local stdio server (npx @sequenzy/mcp). Every tool carries structured outputs (outputSchema plus readOnlyHint, destructiveHint and openWorldHint annotations), so an agent gets typed, safe results instead of raw JSON. Webhooks (create, test, replay) and a documented REST API with an llms.txt index round it out, authenticated by API key. The only gaps versus a perfect score are a published OpenAPI spec and an official REST SDK, and the 120-tool MCP already covers most of what those would give you.

Official MCP, 120 tools, on own domainHosted Streamable HTTP + local stdioStructured outputs + tool annotationsWebhooks with create/test/replayDocumented REST API + llms.txt indexAPI-key auth

Scored 2026-07-02 by Joonas (TMB).

Sequenzy MCP & API FAQ

Is the Sequenzy MCP server official?+
Yes — published on Sequenzy's own domain at https://api.sequenzy.com/v1/mcp.
Can I use the Sequenzy MCP with Cursor or Codex?+
Yes — MCP is a protocol, not Claude-specific. Any MCP-capable client (Cursor, Codex, Windsurf, Zed) can use the same server config with minor path adjustments.
Does Sequenzy have a public API?+
Yes — public REST API at docs.sequenzy.com, auth via api-key.
Does Sequenzy support webhooks?+
Yes — webhooks are available on standard plans.

Sources

Data verified by Joonas on the dates shown. MCP server status auto-rechecked weekly.

Joonas Rotko
Joonas RotkoAuthor & Founder of That Marketing Buddy

10+ years in digital marketing. I review marketing software for AI-stack fit: real pricing, MCP and API support, and how cleanly each tool drops into an AI agent workflow, cross-checked against verified data and real user feedback.

Sequenzy

Try Sequenzy
WEEKLY NEWSLETTER

The marketing tools worth your money, scored for AI agent readiness

Every week I score the tools for MCP, API, and agent-readiness, then email you the ones that actually deliver, what plugs into Claude and Cursor, the pricing changes, and what to skip. No fluff, no daily spam.

Join for free. One email a week, unsubscribe anytime.