loading…
Search for a command to run...
loading…
AI-native email marketing platform built for agents. Control campaigns, automations, contacts, templates, and analytics via MCP with OAuth authentication.
AI-native email marketing platform built for agents. Control campaigns, automations, contacts, templates, and analytics via MCP with OAuth authentication.
Optional stdio bridge for Nitrosend. Most clients should connect directly to Nitrosend's remote MCP server at https://api.nitrosend.com/mcp; this package exists for stdio-only clients and local development.
Manage contacts, compose emails, build automated flows, and launch campaigns through natural language.
Most clients support OAuth — sign in via your browser, no API keys needed.
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.
Go to Settings → Connections → Add Custom Connector and enter:
https://api.nitrosend.com/mcp
Go to Settings → Connectors → Add custom connector and enter:
https://api.nitrosend.com/mcp
Add to .cursor/mcp.json:
{
"mcpServers": {
"nitrosend": {
"url": "https://api.nitrosend.com/mcp"
}
}
}
Cursor handles Nitrosend as a direct remote MCP server. On first use, it prompts for OAuth sign-in.
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.
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 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.
Add to your Zed settings:
{
"context_servers": {
"nitrosend": {
"url": "https://api.nitrosend.com/mcp"
}
}
}
If your client supports HTTP/SSE transport, point it at:
https://api.nitrosend.com/mcp
If your client only supports stdio, use this bridge package 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.
Once connected, your agent can:
| 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) |
MIT
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"nitrosend": {
"command": "npx",
"args": []
}
}
}