OpenClaw Integration

Connect BounceRaptor to OpenClaw for AI-assisted email verification

Overview

OpenClaw is an open-source AI agent framework for building autonomous workflows. Integrate BounceRaptor's MCP server to enable OpenClaw agents to verify email addresses as part of data enrichment, lead qualification, and list cleaning pipelines.

Prerequisites

  • A BounceRaptor account with a Professional or Unlimited plan
  • An active MCP Server Key from Settings → MCP Keys
  • OpenClaw installed and configured in your environment

Step 1: Get Your MCP Key

Go to Settings → MCP Keys in your BounceRaptor dashboard and create a new key labeled "OpenClaw". Copy the key.

Step 2: Configure OpenClaw with MCP

Add BounceRaptor to your OpenClaw MCP server configuration file:

{
  "mcpServers": {
    "bounceraptor": {
      "serverUrl": "https://bounceraptor.com/api/mcp/verify-email/",
      "headers": {
        "Authorization": "Bearer YOUR_MCP_KEY"
      }
    }
  }
}

Step 3: Use BounceRaptor in OpenClaw Workflows

Once configured, OpenClaw agents will have access to BounceRaptor's verification tools. Example OpenClaw task definition:

{
  "task": "verify_and_enrich_leads",
  "steps": [
    {
      "action": "mcp_tool",
      "server": "bounceraptor",
      "tool": "verify-email",
      "input": { "email": "{{ lead.email  }}" },
      "output_key": "verification"
    },
    {
      "action": "condition",
      "if": "verification.status == 'valid'",
      "then": "add_to_crm",
      "else": "flag_for_review"
    }
  ]
}

Available Tools

verify-email
input: { email: string }

Single email verification with 3-layer validation

verify-batch
input: { emails: string[] }

Batch verification with async result tracking

BounceRaptor Logo

Professional email verification platform
Protect your reputation • Maximize deliverability

© 2026 BounceRaptor. All rights reserved.