New:Socket for Asana Is Now Available.Learn more
Get Started

@nitrosend/mcp

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nitrosend/mcp

MCP server for Nitrosend — connect Claude to your email marketing platform

npmnpm
Version
0.6.0
Version published
Weekly downloads
121
-4.72%
Maintainers
1
Weekly downloads
 
Created
Source

@nitrosend/mcp

MCP server for Nitrosend — connect any AI agent to your email marketing platform.

Manage contacts, compose emails, build automated flows, and launch campaigns through natural language.

Setup by client

Claude Code

No API key needed. Claude Code handles sign-in automatically via OAuth.

Add to .mcp.json:

{
  "mcpServers": {
    "nitrosend": {
      "type": "http",
      "url": "https://api.nitrosend.com/mcp"
    }
  }
}

Or via CLI:

claude mcp add --transport http nitrosend https://api.nitrosend.com/mcp

Cursor

API key — add to .cursor/mcp.json:

{
  "mcpServers": {
    "nitrosend": {
      "command": "npx",
      "args": ["-y", "@nitrosend/mcp"],
      "env": {
        "NITROSEND_API_KEY": "nskey_live_..."
      }
    }
  }
}

OAuth — use mcp-remote as a proxy:

{
  "mcpServers": {
    "nitrosend": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://api.nitrosend.com/mcp"]
    }
  }
}

Claude.ai (web + mobile)

Go to Settings → Connectors → Add custom connector and enter:

https://api.nitrosend.com/mcp

Windsurf

Add to ~/.codeium/windsurf/mcp_config.json:

{
  "mcpServers": {
    "nitrosend": {
      "command": "npx",
      "args": ["-y", "@nitrosend/mcp"],
      "env": {
        "NITROSEND_API_KEY": "nskey_live_..."
      }
    }
  }
}

Zed

Add to Zed settings under context_servers:

{
  "context_servers": {
    "nitrosend": {
      "command": {
        "path": "npx",
        "args": ["-y", "@nitrosend/mcp"],
        "env": {
          "NITROSEND_API_KEY": "nskey_live_..."
        }
      }
    }
  }
}

Any other MCP client

{
  "command": "npx",
  "args": ["-y", "@nitrosend/mcp"],
  "env": {
    "NITROSEND_API_KEY": "nskey_live_..."
  }
}

Get your API key at nitrosend.com → Settings → API Keys.

What you can do

Once connected, your agent can:

  • Read — query contacts, segments, flows, campaigns, and account status
  • Compose — create emails with sections, build multi-step flows, set up campaigns
  • Manage — import contacts, create segments, manage lists and tags
  • Deliver — preview emails, run spam checks, send tests, approve and schedule campaigns
  • Insights — view open/click/unsubscribe metrics and trends

Environment variables

VariableDescription
NITROSEND_API_KEYAPI key (nskey_live_...) — for stdio transport
NITROSEND_BEARER_TOKENOAuth bearer token — alternative to API key
NITROSEND_API_URLOverride API endpoint (default: https://api.nitrosend.com/mcp)

Requirements

  • Node.js 18+

License

MIT

FAQs

Package last updated on 04 Mar 2026

Related posts