Built for AI Agents.

Positioning SimplyWarmup as the core deliverability infrastructure layer via Model Context Protocol (MCP).

Native MCP Integration

SimplyWarmup goes beyond a dashboard. We expose a direct MCP server integration so AI Sales Development Representatives (SDRs) and automated outbound engines can plug-and-play deliverability directly into their workflow.

mcp-config.json
{
  "mcpServers": {
    "simplywarmup": {
      "command": "npx",
      "args": ["-y", "@simplywarmup/mcp-server"],
      "env": {
        "SIMPLYWARMUP_API_KEY": "sw_live_*******************"
      }
    }
  }
}

Safety Interlock API

Programmatic protection. Before an agent executes a massive campaign, it checks the Safety Interlock API. If sender reputation dips, the system automatically halts sending—saving your domains from permanent blacklisting.

Example Agent Logic
const status = await simplywarmup.checkHealth('[email protected]');

if (status.reputation === 'AT_RISK') {
  // Halt campaign automatically
  pauseCampaign();
  increaseWarmupVolume();
} else {
  sendEmails();
}