Run cold email sequences and sales outreach on autopilot via the SalesBlink API. Works with any AI agent — Claude, Claude Code, Claude Desktop, ChatGPT, OpenClaw, Cursor, Codex, Hermes, and more. Install it as an agent skill, or use the one-click .mcpb bundle for MCPB-compatible hosts.
Grab your key from run.salesblink.io/account/integration/api, or use the salesblink_signup tool to get the public sign-up link.
Recommended: let your agent install it (copy-paste prompt)
Paste this into your AI agent and it will set everything up for you:
Set up the SalesBlink Cold Email agent skill from https://github.com/open-salesblink/skill
for me. Read the README and SKILL.md in that repo, then install the skill in this
environment using the method that fits you best.
Ask me for my SalesBlink API key (from
https://run.salesblink.io/account/integration/api), or use the salesblink_signup
tool to get the sign-up link if I don't have an account yet. Configure the API key
as SALESBLINK_API_KEY. Verify the setup works, then help me launch my first cold
email sequence: ask what product I'm selling and who I'm targeting, create the
list, contacts, templates, and sequence, and walk me through launching it.
Or install manually
Any agent (npx)
npx skills add open-salesblink/skillClaude Code
/plugin marketplace add https://github.com/open-salesblink/skill
/plugin install cold-email-salesblinkHermes
hermes skills tap add open-salesblink/skill
hermes skills install cold-email-salesblinkOpenClaw / ClawHub
openclaw skills install cold-email-salesblinkexport SALESBLINK_API_KEY="key-****"- "Create a cold email sequence for my SaaS product"
- "Add these leads to a new list and launch a campaign"
- "Check analytics for opens and replies from last week"
- "Run an inbox placement test for my template"
- Cold email campaigns — build sequences, write templates, and launch outreach
- Lead management — create lists, import contacts in bulk, move and update leads
- Sender management — connect Gmail/Outlook via OAuth; SMTP/IMAP and bulk CSV through the SalesBlink web UI
- Inbox & replies — read threads, reply to prospects, mark conversations
- Analytics — track opens, clicks, replies, and sent events
- Deliverability testing — run inbox placement tests across providers
- Workspace & team management — users, roles, folders, and account config
codex plugin marketplace add https://github.com/open-salesblink/skillInvoke by referencing the plugin namespace.
git clone https://github.com/open-salesblink/skill.gitLoad the plugin from the cloned directory in Cursor's plugin settings.
ChatGPT connects via MCP — visit https://mcp.salesblink.io and add SalesBlink as an MCP connector, or use the .mcpb bundle below in an MCPB-compatible host.
Visit https://mcp.salesblink.io to connect via MCP.
⬇ Download cold-email-salesblink.mcpb — one-click install of this skill in MCPB-compatible hosts (e.g. Claude for macOS/Windows). Open the downloaded file and enter your SALESBLINK_API_KEY when prompted.
The bundle runs a local Node.js MCP server with hardened gateway tools plus the full bundled API reference. Source lives in mcpb/cold-email-salesblink/. To build it yourself instead of downloading:
cd mcpb/cold-email-salesblink
npm install --omit=dev
npm test # protocol smoke test (no API key needed)
npx @anthropic-ai/mcpb pack . # produces cold-email-salesblink.mcpbSee mcpb/cold-email-salesblink/README.md for tools, configuration, and security details.
Note: All platforms above require the same
SALESBLINK_API_KEYenvironment variable shown in Step 3.
Base URL
https://run.salesblink.io/api/public/v1.0.0
Authentication
Pass your API key in the Authorization header with no "Bearer" prefix:
Authorization: key-****
Pagination
- Most list endpoints:
limit(max 100) andskip - Activity endpoints (
/sent,/opens,/clicks,/replies):per_page(max 100) andpage(1-indexed)
Always paginate — never assume a single request returns all data.
Error Handling
| Status | Meaning | Action |
|---|---|---|
| 200 | Success | Check success field |
| 400 | Bad request | Re-check payload structure against the reference file |
| 401 | Unauthorized | Verify API key |
| 403 | Forbidden | Insufficient permissions (role too low) |
| 404 | Not found | Verify the ID / endpoint |
| 409 | Conflict | Resource already exists or connection failed |
| 429 | Rate limited | Wait 60s, then retry |
| 500 | Server error | Retry once after 10s |
See skills/cold-email-salesblink/references/workflows.md for full examples. High-level flow:
- Create a list →
POST /lists - Add contacts →
POST /contacts(batch up to 500, snake_case fields) - Create templates →
POST /templates(merge vars like{{first_name}}) - Fetch senders →
GET /senders - Create sequence →
POST /sequences(steps: email → delay → email …) - Launch →
PATCH /sequences/:idwithpaused: false&launchTimingMode: "now"
The evals/evals.json file contains test scenarios covering list creation, bulk contact import, sequence creation, large CSV ingestion, inbox replies with CC, and paginated activity tracking.
- Requires network access to
run.salesblink.io - Supports any HTTP client (curl, Node.js fetch, Python requests, PowerShell, etc.)
MIT — © FUTUREBLINK Inc. See LICENSE.