@nitrosend/mcp
Advanced tools
+2
-1
| { | ||
| "name": "@nitrosend/mcp", | ||
| "version": "0.6.1", | ||
| "version": "0.6.2", | ||
| "description": "MCP server for Nitrosend — connect Claude to your email marketing platform", | ||
| "mcpName": "com.nitrosend/nitrosend", | ||
| "license": "MIT", | ||
@@ -6,0 +7,0 @@ "type": "module", |
+70
-34
@@ -11,7 +11,11 @@ # @nitrosend/mcp | ||
| Most clients support OAuth — sign in via your browser, no API keys needed. | ||
| ### Claude Code | ||
| No API key needed. Claude Code handles sign-in automatically via OAuth. | ||
| ```bash | ||
| claude mcp add --transport http nitrosend https://api.nitrosend.com/mcp | ||
| ``` | ||
| Add to `.mcp.json`: | ||
| Or add to `.mcp.json`: | ||
@@ -29,6 +33,12 @@ ```json | ||
| Or via CLI: | ||
| OAuth sign-in happens automatically on first use. | ||
| ```bash | ||
| claude mcp add --transport http nitrosend https://api.nitrosend.com/mcp | ||
| --- | ||
| ### Claude Desktop | ||
| Go to **Settings → MCP Servers → Add** and select **Streamable HTTP** transport: | ||
| ```text | ||
| https://api.nitrosend.com/mcp | ||
| ``` | ||
@@ -38,5 +48,15 @@ | ||
| ### Claude.ai (web + mobile) | ||
| Go to **Settings → Connectors → Add custom connector** and enter: | ||
| ```text | ||
| https://api.nitrosend.com/mcp | ||
| ``` | ||
| --- | ||
| ### Cursor | ||
| **API key** — add to `.cursor/mcp.json`: | ||
| Add to `.cursor/mcp.json`: | ||
@@ -48,6 +68,3 @@ ```json | ||
| "command": "npx", | ||
| "args": ["-y", "@nitrosend/mcp"], | ||
| "env": { | ||
| "NITROSEND_API_KEY": "nskey_live_..." | ||
| } | ||
| "args": ["-y", "mcp-remote", "https://api.nitrosend.com/mcp"] | ||
| } | ||
@@ -58,10 +75,16 @@ } | ||
| **OAuth** — use `mcp-remote` as a proxy: | ||
| Cursor opens your browser to sign in on first use via `mcp-remote`. | ||
| --- | ||
| ### VS Code (Copilot) | ||
| Add to `.vscode/mcp.json`: | ||
| ```json | ||
| { | ||
| "mcpServers": { | ||
| "servers": { | ||
| "nitrosend": { | ||
| "command": "npx", | ||
| "args": ["-y", "mcp-remote", "https://api.nitrosend.com/mcp"] | ||
| "type": "http", | ||
| "url": "https://api.nitrosend.com/mcp" | ||
| } | ||
@@ -72,12 +95,4 @@ } | ||
| --- | ||
| VS Code handles OAuth automatically via its built-in MCP auth flow. | ||
| ### Claude.ai (web + mobile) | ||
| Go to **Settings → Connectors → Add custom connector** and enter: | ||
| ```text | ||
| https://api.nitrosend.com/mcp | ||
| ``` | ||
| --- | ||
@@ -93,7 +108,3 @@ | ||
| "nitrosend": { | ||
| "command": "npx", | ||
| "args": ["-y", "@nitrosend/mcp"], | ||
| "env": { | ||
| "NITROSEND_API_KEY": "nskey_live_..." | ||
| } | ||
| "serverUrl": "https://api.nitrosend.com/mcp" | ||
| } | ||
@@ -104,7 +115,27 @@ } | ||
| Windsurf supports OAuth natively for HTTP servers — sign in via your browser on first use. | ||
| --- | ||
| ### Codex CLI | ||
| ```bash | ||
| codex mcp add nitrosend --url https://api.nitrosend.com/mcp | ||
| codex mcp login nitrosend | ||
| ``` | ||
| Or add to `~/.codex/config.toml`: | ||
| ```toml | ||
| [mcp_servers.nitrosend] | ||
| url = "https://api.nitrosend.com/mcp" | ||
| ``` | ||
| Then run `codex mcp login nitrosend` to authenticate via OAuth. | ||
| --- | ||
| ### Zed | ||
| Add to Zed settings under `context_servers`: | ||
| Zed only supports stdio transport — use `mcp-remote` to bridge: | ||
@@ -117,6 +148,3 @@ ```json | ||
| "path": "npx", | ||
| "args": ["-y", "@nitrosend/mcp"], | ||
| "env": { | ||
| "NITROSEND_API_KEY": "nskey_live_..." | ||
| } | ||
| "args": ["-y", "mcp-remote", "https://api.nitrosend.com/mcp"] | ||
| } | ||
@@ -132,2 +160,10 @@ } | ||
| **If your client supports HTTP/SSE transport**, point it at: | ||
| ```text | ||
| https://api.nitrosend.com/mcp | ||
| ``` | ||
| **If your client only supports stdio**, use the bridge with an API key: | ||
| ```json | ||
@@ -143,3 +179,3 @@ { | ||
| Get your API key at **nitrosend.com → Settings → API Keys**. | ||
| Get your API key at **[Settings → API Keys](https://app.nitrosend.com/my/settings/api-keys)** in the Nitrosend dashboard. | ||
@@ -146,0 +182,0 @@ --- |
12271
7.18%198
22.22%