1-Click Blueprints

Turnkey Workflow Blueprints

Copy-paste recipes and downloadable templates to plug LMCProtocol directly into your existing automation stack.

ListMint: Autonomous Cold Outbound & Multi-Inbox Dispatch

RECOMMENDED SENDING ENGINE

Pre-filters local prospects in 140ms with LMCP flaw codes, then pipes verified leads with personalized hooks directly into ListMint.

⬇ Download Blueprint
// 1. Fetch 140ms Flaw Telemetry from LMCProtocol
POST https://lmcprotocol.com/v1/search
Headers: { "Authorization": "Bearer YOUR_LMCP_KEY" }
Body: { "query": "Solar Installers", "location": "Phoenix, AZ", "filters": { "missing_pixel": true } }

// 2. Direct Webhook Dispatch into ListMint.uk Campaign
POST https://api.listmint.uk/v1/campaigns/leads
Headers: { "Authorization": "Bearer YOUR_LISTMINT_KEY" }
Body: {
  "email": "{{item.contacts.direct_email}}",
  "first_name": "{{item.contacts.first_name}}",
  "company": "{{item.entity_name}}",
  "custom_variables": {
    "flaw": "{{item.diagnostic_telemetry.detected_flaws[0].description}}",
    "hook": "{{item.outbound_hook}}"
  }
}

Clay.com: 1-Click HTTP Column Recipe

Replace 4 separate Clay enrichment columns with a single sub-second call.

Clay Recipe
Method: POST
URL: https://lmcprotocol.com/v1/search
Headers:
  Authorization: Bearer [Your_LMCP_Key]
  Content-Type: application/json
Body:
  {
    "query": "{{/Company_Category}}",
    "location": "{{/City}}, {{/State}}",
    "limit": 1,
    "filters": { "missing_pixel": true }
  }

n8n: Automated Local Flaw Prospecting Workflow

Queries daily local businesses, filters for missing pixels, and pushes directly to Google Sheets or Smartlead.

n8n Node
// Drag-and-drop HTTP Request Node Configuration
{
  "parameters": {
    "url": "https://lmcprotocol.com/v1/search",
    "method": "POST",
    "sendBody": true,
    "bodyParameters": {
      "query": "Plumbers",
      "location": "Denver, CO",
      "limit": 20
    }
  }
}

Python & CrewAI Agent Tool

Wrap LMCProtocol as a native agent tool in CrewAI or LangChain.

Python SDK
import requests

def search_local_flaws(query: str, location: str):
    res = requests.post(
        "https://lmcprotocol.com/v1/search",
        headers={"Authorization": "Bearer lmcp_live_YOUR_KEY"},
        json={"query": query, "location": location, "limit": 5}
    )
    return res.json()