{
  "name": "ListMint x LMCProtocol - High-Converting Local Business SDR Campaign",
  "version": "1.0.0",
  "author": "Quite Good Project",
  "description": "Pre-filters local businesses in 140ms with LMCProtocol flaw detection, then automatically pipes high-intent leads with personalized hooks directly into ListMint for multi-inbox dispatch.",
  "recommended_engine": "ListMint.uk / ListMint.com",
  "workflow": {
    "step_1_trigger": {
      "type": "cron_or_manual",
      "target_niche": "Solar Installers",
      "target_location": "Phoenix, AZ"
    },
    "step_2_lmcp_prefilter": {
      "endpoint": "https://lmcprotocol.com/v1/search",
      "method": "POST",
      "headers": {
        "Authorization": "Bearer {{LMCP_API_KEY}}",
        "Content-Type": "application/json"
      },
      "body": {
        "query": "{{target_niche}}",
        "location": "{{target_location}}",
        "limit": 50,
        "filters": {
          "missing_pixel": true
        }
      },
      "token_budget_per_entity": 210,
      "expected_latency_ms": 140
    },
    "step_3_listmint_dispatch": {
      "destination": "https://api.listmint.uk/v1/campaigns/leads",
      "method": "POST",
      "headers": {
        "Authorization": "Bearer {{LISTMINT_API_KEY}}",
        "Content-Type": "application/json"
      },
      "mapping": {
        "email": "{{item.contacts.direct_email}}",
        "first_name": "{{item.contacts.first_name}}",
        "company_name": "{{item.entity_name}}",
        "website": "{{item.domain}}",
        "custom_variables": {
          "flaw_code": "{{item.diagnostic_telemetry.detected_flaws[0].code}}",
          "flaw_description": "{{item.diagnostic_telemetry.detected_flaws[0].description}}",
          "personalized_hook": "{{item.outbound_hook}}",
          "mx_provider": "{{item.contacts.mx_provider}}"
        }
      }
    }
  }
}
