Sequencer Lead Push
Pushes Clay-enriched leads into an Instantly or Smartlead campaign. Maps Clay column names to sequencer fields, gates on ICP score, deduplicates against the campaign, and batches the push. Dry run returns the exact payload without sending. Instantly API v2 and Smartlead API v1.
Install
npx @mambalabsdev/mcp-clay-to-instantly-smartlead-pushUse Cases
- Who buys it. Bought by Clay users whose plan tier does not include the native sequencer integration, by Apify-native pipelines with no Clay subscription, and by agencies that want an API-triggered push step instead of a manual CSV import.
- Clay enrichment column. Push enriched leads straight into an Instantly or Smartlead campaign with an ICP gate and campaign dedupe, no CSV step.
Features
- Leads created in your campaign, counted and confirmed
- ICP score gate before anything is sent
- Deduplication against the live campaign
- 18 reconciled counters, nothing disappears quietly
- Instantly v2 and Smartlead v1
Input
sequencerstringrequiredinstantly or smartlead.
api_keystringoptionalYour v2 Instantly key or your Smartlead key. Not needed for a dry run with deduplication off.
campaign_idstringrequiredThe target campaign. Instantly IDs are UUIDs, Smartlead IDs are numeric.
leadsarrayoptionalLead rows. Each needs an email at minimum.
dataset_idstringoptionalAn upstream Apify dataset ID. Used only when leads is empty.
min_icp_scoreintegeroptionalDrop leads scoring below this. Default 0, which pushes everything.
deduplicatebooleanoptionalCheck the campaign before pushing. Default true.
field_mappingobjectoptionalOverride the default map. Keys are your column names, values are sequencer field names.
custom_variablesarrayoptionalExtra column names to pass through under their own name.
dry_runbooleanoptionalPreview without sending. Default false.
Output schema
{
"total_leads_received": 500,
"leads_invalid": 3,
"leads_below_min_score": 244,
"leads_deduplicated": 12,
"leads_eligible": 241,
"leads_pushed": 238,
"leads_skipped_by_sequencer": 3,
"leads_failed": 0,
"failed_emails": [],
"vendor_api_version": "instantly-v2",
"dedupe_complete": true,
"sequencer": "instantly",
"campaign_id": "019fdec7-6915-70ab-be87-8bdc0bb78acf",
"dry_run": false,
"is_summary_row": false,
"run_date": "2026-08-09T16:48:31.785Z"
}Pricing
Pay-per-event billing on the Apify platform. You are charged only when the actor returns a result. No subscription, no seat license.
Free-tier Apify accounts include monthly free compute. Upgrade for higher concurrency and volume.