SuperSend TX MCP server

Expose SuperSend TX to Cursor, Claude Code, or any MCP client with a curated tool surface.

Package: supersendtx-mcp on npm (published with supersendtx + supersendtx-cli via ./scripts/publish-npm.sh)
Version: 0.4.0

Docs index for agents: llms.txt · Agent Skills · Agent skill notes


Transports

Mode How to run Auth
stdio (default) npx -y supersendtx-mcp Env SUPERSENDTX_API_KEY=stx_…
HTTP (local) npx -y supersendtx-mcp --http --port 3000 Authorization: Bearer stx_… per request
HTTP (hosted) https://mcp.supersendtx.com/mcp OAuth (recommended) or Authorization: Bearer stx_…

Local HTTP listens on http://127.0.0.1:3000/mcp by default (--host / --port override). GET /health is unauthenticated (local and hosted).

Remote MCP clients (Cursor, Claude Code) can connect without pasting an API key:

  1. Add the hosted URL only — https://mcp.supersendtx.com/mcp (no headers block).
  2. The client discovers OAuth via WWW-Authenticate + /.well-known/oauth-protected-resource.
  3. Sign in on app.supersendtx.com, approve access, and the client receives tokens.

Authorization server metadata: https://app.supersendtx.com/.well-known/oauth-authorization-server

Bearer stx_… still works for scripts, CI, and advanced setups.


Install in Cursor (stdio)

  1. Create an API key in the dashboard (or use Get started → Copy setup prompt / Install in Cursor).
  2. Add to .cursor/mcp.json (or global ~/.cursor/mcp.json):
{
  "mcpServers": {
    "supersendtx": {
      "command": "npx",
      "args": ["-y", "supersendtx-mcp"],
      "env": {
        "SUPERSENDTX_API_KEY": "stx_your_key_here"
      }
    }
  }
}
  1. Restart Cursor. The tools appear in Agent chat.

Optional: set SUPERSENDTX_API_URL when pointing at a local app (http://localhost:3003/api).

The dashboard Install in Cursor button generates a deeplink with your key pre-filled.

Cursor (HTTP)

Terminal:

npx -y supersendtx-mcp --http --port 3000

.cursor/mcp.json (URL + Bearer; exact shape depends on Cursor version):

{
  "mcpServers": {
    "supersendtx": {
      "url": "http://127.0.0.1:3000/mcp",
      "headers": {
        "Authorization": "Bearer stx_your_key_here"
      }
    }
  }
}

Cursor (hosted remote)

OAuth (recommended): no local process, no API key in config.

{
  "mcpServers": {
    "supersendtx": {
      "url": "https://mcp.supersendtx.com/mcp"
    }
  }
}

Cursor runs the browser OAuth flow on first connect.

Bearer (advanced): dashboard Copy hosted MCP JSON pre-fills your key.

{
  "mcpServers": {
    "supersendtx": {
      "url": "https://mcp.supersendtx.com/mcp",
      "headers": {
        "Authorization": "Bearer stx_your_key_here"
      }
    }
  }
}

Health check: GET https://mcp.supersendtx.com/health


Claude Code

# stdio
claude mcp add --transport stdio supersendtx -- npx -y supersendtx-mcp

# HTTP (local — start --http server first)
claude mcp add --transport http supersendtx http://127.0.0.1:3000/mcp

# HTTP (hosted)
claude mcp add --transport http supersendtx https://mcp.supersendtx.com/mcp

Export SUPERSENDTX_API_KEY=stx_… for stdio. For HTTP (local or hosted), configure Bearer headers in the client.


Tools

All tools call the supersendtx SDK (no duplicate HTTP).

Tool Purpose
send_email POST /emails
list_emails / get_email List or fetch sends
list_domains / create_domain Domain inventory
apply_domain_dns / verify_domain DNS apply + verify
list_webhooks / create_webhook / delete_webhook Webhook endpoints
list_suppressions / add_suppression / remove_suppression Suppression list
list_templates / get_template Templates by id or alias
send_test_webhook_event POST /emails/test (CI / webhook sink)
get_deliverability Best-effort metrics (7d / 30d)

send_email

Inputs: from, to, subject, optional html / text / reply_to.

Sandbox: if from is noreply@mail.supersendtx.com, recipients must match the account email.

send_test_webhook_event

Inputs:

  • event (required) — e.g. email.bounced, email.delivered
  • optional email_id (msg_…)
  • optional deliver (default true) — enqueue to subscribed webhooks

Implementation

Source: packages/supersendtx-mcp in the SuperSend TX monorepo.

For agents without MCP, use the dashboard Copy setup prompt flow, Agent Skills, or agent-skill.md with llms.txt.

npx -y supersendtx-mcp
npx -y supersendtx-mcp --http --port 3000
# or
npm install -g supersendtx-mcp

Smithery

packages/supersendtx-mcp/smithery.yaml configures stdio install for Smithery. After npm publish, list/publish the package from the Smithery dashboard or CLI so agents can discover it.