Sequenzy MCP server for AI-powered email marketing automation
- ✓Actively maintained (<30d)
- ✓Clear description
- !No standard license detected
claude mcp add mcp -- npx -y @sequenzy/setup{
"mcpServers": {
"mcp": {
"command": "npx",
"args": ["-y", "@sequenzy/setup"],
"env": {
"SEQUENZY_API_KEY": "<sequenzy_api_key>"
}
}
}
}SEQUENZY_API_KEYMCP Servers overview
# Sequenzy MCP Server
Official MCP server for [Sequenzy](https://sequenzy.com), the AI-powered email marketing platform.
Connect Sequenzy to Claude Desktop, Claude Code, Codex, Cursor, Windsurf, VS Code Copilot, OpenClaw, and other MCP clients so your AI assistant can manage email operations with structured tools instead of hand-written API calls.
## What You Can Do
- Manage subscribers, tags, lists, and dynamic segments.
- Sync segments to Meta custom audiences for Facebook and Instagram retargeting.
- Manage products and attach digital delivery files for purchase automations.
- Draft, update, schedule, and inspect campaigns.
- Create and edit email sequences, including event-triggered and segment-entry automations.
- Cancel, pause, resume, duplicate, or delete campaigns and enroll contacts into sequences.
- Manage transactional email templates and send single transactional emails.
- Create, edit, publish, unpublish, and delete landing pages.
- Connect and verify custom domains for published landing pages.
- Manage team invitations, inbox conversations, and outbound webhook endpoints.
- Generate email copy, subject lines, and multi-step sequences.
- Inspect analytics, subscriber activity, deliverability health, and dashboard URLs.
- Configure sender websites and pull integration examples for common frameworks.
Every published MCP tool includes explicit `readOnlyHint`, `destructiveHint`, and `openWorldHint` annotations so compatible clients can display accurate tool-use affordances. Tools also publish `outputSchema` definitions and return `structuredContent`, giving clients and models machine-readable result shapes for follow-up calls.
## Quick Setup
The easiest setup path is the Sequenzy wizard:
```bash
npx @sequenzy/setup
```
The wizard opens the browser login flow, creates a personal API key, detects supported AI clients, and configures them automatically when possible.
## Manual Setup
All stdio MCP clients use the same command:
- Command: `npx`
- Args: `-y @sequenzy/mcp`
- Required env: `SEQUENZY_API_KEY=seq_user_your_key_here`
Optional environment variables:
- `SEQUENZY_API_URL` - Sequenzy API base URL. Defaults to `https://api.sequenzy.com`.
- `SEQUENZY_APP_URL` - Sequenzy dashboard base URL used by app URL helpers. Defaults to `https://sequenzy.com`.
### Claude Desktop
Add this to your Claude Desktop config:
- macOS: `~/Library/Application Support/Claude/claude_desktop_config.json`
- Windows: `%APPDATA%\Claude\claude_desktop_config.json`
```json
{
"mcpServers": {
"sequenzy": {
"command": "npx",
"args": ["-y", "@sequenzy/mcp"],
"env": {
"SEQUENZY_API_KEY": "seq_user_your_key_here"
}
}
}
}
```
Restart Claude Desktop after editing the config.
### Claude Code
```bash
claude mcp add --scope user --env=SEQUENZY_API_KEY=seq_user_your_key_here sequenzy -- npx -y @sequenzy/mcp
```
On native Windows, wrap `npx` with `cmd /c`:
```bash
claude mcp add --scope user --env=SEQUENZY_API_KEY=seq_user_your_key_here sequenzy -- cmd /c npx -y @sequenzy/mcp
```
For a shared project config, use `.mcp.json`:
```json
{
"mcpServers": {
"sequenzy": {
"command": "npx",
"args": ["-y", "@sequenzy/mcp"],
"env": {
"SEQUENZY_API_KEY": "seq_user_your_key_here"
}
}
}
}
```
### Codex
```bash
codex mcp add sequenzy --env SEQUENZY_API_KEY=seq_user_your_key_here -- npx -y @sequenzy/mcp
codex mcp list
```
Manual Codex config in `~/.codex/config.toml`:
```toml
[mcp_servers.sequenzy]
command = "npx"
args = ["-y", "@sequenzy/mcp"]
[mcp_servers.sequenzy.env]
SEQUENZY_API_KEY = "seq_user_your_key_here"
```
### Cursor
Add this to `~/.cursor/mcp.json`:
```json
{
"mcpServers": {
"sequenzy": {
"command": "npx",
"args": ["-y", "@sequenzy/mcp"],
"env": {
"SEQUENZY_API_KEY": "seq_user_your_key_here"
}
}
}
}
```
### Windsurf
Use the same JSON shape as Cursor.
- macOS: `~/Library/Application Support/Windsurf/mcp.json`
- Windows: `%APPDATA%\Windsurf\mcp.json`
### VS Code Copilot
VS Code uses a `servers` object:
```json
{
"servers": {
"sequenzy": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@sequenzy/mcp"],
"env": {
"SEQUENZY_API_KEY": "seq_user_your_key_here"
}
}
}
}
```
### Other MCP Clients
For OpenClaw, Hermes, and other MCP-compatible clients, point the client at `npx -y @sequenzy/mcp` and set `SEQUENZY_API_KEY`.
## Getting an API Key
1. Open [the Sequenzy dashboard](https://sequenzy.com/dashboard).
2. Go to Settings -> API Keys.
3. Create a personal key.
4. Add the key to your MCP client config.
Personal keys start with `seq_user_`. You can revoke them any time in the dashboard.
## Tools
This server currently exposes 113 MCP tools.
### Account, Companies, Setup
| Tool | Description |
| ----------------------- | ------------------------------------------------------------------------------------------------- |
| `get_account` | Get account info, available companies, and the current company. |
| `select_company` | Set the active company for future tool calls. |
| `get_app_urls` | Build dashboard URLs for campaigns, landing pages, sequences, emails, settings, domains, and sent email details. |
| `create_company` | Create a new company or brand. |
| `get_company` | Read company details and localization settings. |
| `create_api_key` | Create an API key for a company. |
| `list_websites` | List configured sender websites and domains. |
| `add_website` | Add a sender website. Processing can take around 30 seconds. |
| `check_website` | Check whether a website is processed and ready. |
| `get_integration_guide` | Get framework-specific integration examples. |
### Subscribers
| Tool | Description |
| -------------------- | ----------------------------------------------------------------------------------- |
| `add_subscriber` | Add a subscriber with attributes, tags, status, opt-in mode, and optional list IDs. |
| `update_subscriber` | Update attributes, add tags, or remove tags. |
| `remove_subscriber` | Unsubscribe a subscriber or hard-delete them. |
| `get_subscriber` | Fetch subscriber details by email or external ID. |
| `search_subscribers` | Search by query, tags, list, status, segment, or pagination. |
### Products & Digital Delivery
| Tool | Description |
| --------------------- | ------------------------------------------------------------------------------------- |
| `list_products` | List synced products from Stripe, Shopify, WooCommerce, manual, or Commerce API data. |
| `upsert_products` | Create or update up to 100 Commerce API products keyed by your product ID. |
| `delete_product` | Delete a product previously pushed through the Commerce API. |
| `attach_product_file` | Attach a hosted or locally uploaded delivery file to a product. |
| `remove_product_file` | Remove an attached product delivery file. |
| `sync_products` | Queue a Stripe product catalog sync. |
After a product delivery file is attached, matching purchase events include `download.url` and `download.name`, so purchase-triggered emails can use merge tags like `{{event.download.url}}`.
### Lists, Tags, Segments
| Tool | Description |
| ------------------------------ | ----------------------------------------------------------- |
| `list_tags` | List all tags. |
| `create_tag` | Create a tag definition with an optional color. |
| `update_tag` | Update a tag color. |
| `delete_tag` | Delete a tag and remove it from subscribers. |
| `list_lists` | List subscriber lists. |
| `create_list` | Create a subscriber list. |
| `update_list` | Rename or describe a subscriber list. |
| `delete_list` | Delete a subscriber list. |
| `add_subscribers_to_list` | Add up to 500 subscribers to a list from an email array. |
| `remove_subscribers_from_list` | Remove up to 500 subscribers from a list. |
| `list_segments` | List saved segments and counts. |
| `create_segment` | Create saved segments from filters or nested AND/OR groups. |
| `update_segment` | Update segment name, filters, root group, or join operator. |
| `delete_segment` | Delete a saved segment. |
| `get_segment_count` | Preview the active subscriber count for a segment. What people ask about mcp
What is Sequenzy/mcp?
+
Sequenzy/mcp is mcp servers for the Claude AI ecosystem. Sequenzy MCP server for AI-powered email marketing automation It has 1 GitHub stars and was last updated today.
How do I install mcp?
+
You can install mcp by cloning the repository (https://github.com/Sequenzy/mcp) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.
Is Sequenzy/mcp safe to use?
+
Our security agent has analyzed Sequenzy/mcp and assigned a Trust Score of 54/100 (tier: OK). See the full breakdown of passed checks and flags on this page.
Who maintains Sequenzy/mcp?
+
Sequenzy/mcp is maintained by Sequenzy. The last recorded GitHub activity is from today, with 3 open issues.
Are there alternatives to mcp?
+
Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.
Deploy mcp to your cloud
Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.
Maintain this repo? Add a badge to your README
Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.
More MCP Servers
Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.
User-friendly AI Interface (Supports Ollama, OpenAI API, ...)
An open-source AI agent that brings the power of Gemini directly into your terminal.
The fastest path to AI-powered full stack observability, even for lean teams.
🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl!
⭐AI-driven public opinion & trend monitor with multi-platform aggregation, RSS, and smart alerts.🎯 告别信息过载,你的 AI 舆情监控助手与热点筛选工具!聚合多平台热点 + RSS 订阅,支持关键词精准筛选。AI 智能筛选新闻 + AI 翻译 + AI 分析简报直推手机,也支持接入 MCP 架构,赋能 AI 自然语言对话分析、情感洞察与趋势预测等。支持 Docker ,数据本地/云端自持。集成微信/飞书/钉钉/Telegram/邮件/ntfy/bark/slack 等渠道智能推送。