Nitrosend
AI-native email marketing platform built for agents. Control campaigns, automations, contacts, templates, and analytics via MCP with OAuth authentication.
README
@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
Most clients support OAuth — sign in via your browser, no API keys needed.
Claude Code
claude mcp add --transport http nitrosend https://api.nitrosend.com/mcp
Or add to .mcp.json:
{
"mcpServers": {
"nitrosend": {
"type": "http",
"url": "https://api.nitrosend.com/mcp"
}
}
}
OAuth sign-in happens automatically on first use.
Claude Desktop
Go to Settings → MCP Servers → Add and select Streamable HTTP transport:
https://api.nitrosend.com/mcp
Claude.ai (web + mobile)
Go to Settings → Connectors → Add custom connector and enter:
https://api.nitrosend.com/mcp
Cursor
Add to .cursor/mcp.json:
{
"mcpServers": {
"nitrosend": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://api.nitrosend.com/mcp"]
}
}
}
Cursor opens your browser to sign in on first use via mcp-remote.
VS Code (Copilot)
Add to .vscode/mcp.json:
{
"servers": {
"nitrosend": {
"type": "http",
"url": "https://api.nitrosend.com/mcp"
}
}
}
VS Code handles OAuth automatically via its built-in MCP auth flow.
Windsurf
Add to ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"nitrosend": {
"serverUrl": "https://api.nitrosend.com/mcp"
}
}
}
Windsurf supports OAuth natively for HTTP servers — sign in via your browser on first use.
Codex CLI
codex mcp add nitrosend --url https://api.nitrosend.com/mcp
codex mcp login nitrosend
Or add to ~/.codex/config.toml:
[mcp_servers.nitrosend]
url = "https://api.nitrosend.com/mcp"
Then run codex mcp login nitrosend to authenticate via OAuth.
Zed
Zed only supports stdio transport — use mcp-remote to bridge:
{
"context_servers": {
"nitrosend": {
"command": {
"path": "npx",
"args": ["-y", "mcp-remote", "https://api.nitrosend.com/mcp"]
}
}
}
}
Any other MCP client
If your client supports HTTP/SSE transport, point it at:
https://api.nitrosend.com/mcp
If your client only supports stdio, use the bridge with an API key:
{
"command": "npx",
"args": ["-y", "@nitrosend/mcp"],
"env": {
"NITROSEND_API_KEY": "nskey_live_..."
}
}
Get your API key at Settings → API Keys in the Nitrosend dashboard.
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
| Variable | Description |
|---|---|
NITROSEND_API_KEY |
API key (nskey_live_...) — for stdio transport |
NITROSEND_BEARER_TOKEN |
OAuth bearer token — alternative to API key |
NITROSEND_API_URL |
Override API endpoint (default: https://api.nitrosend.com/mcp) |
Requirements
- Node.js 18+
License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.