{
  "info": {
    "name": "Helloleads — mcp.ai",
    "description": "REST API for the Helloleads MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/helloleads",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "helloleads_create_lead",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/lead",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "lead"
          ]
        },
        "description": "Tool to add a new lead into HelloLeads. Use when you need to push a fresh lead record with mandatory first name and list key.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fax\": \"\",\n  \"city\": \"\",\n  \"tags\": \"\",\n  \"email\": \"\",\n  \"notes\": \"\",\n  \"phone\": \"\",\n  \"state\": \"\",\n  \"mobile\": \"\",\n  \"company\": \"\",\n  \"country\": \"\",\n  \"website\": \"\",\n  \"category\": \"\",\n  \"list_key\": \"\",\n  \"deal_size\": \"\",\n  \"interests\": \"\",\n  \"last_name\": \"\",\n  \"potential\": \"\",\n  \"first_name\": \"\",\n  \"designation\": \"\",\n  \"mobile_code\": \"\",\n  \"postal_code\": \"\",\n  \"address_line1\": \"\",\n  \"address_line2\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "helloleads_list_leads",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/leads",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "leads"
          ]
        },
        "description": "Tool to list all leads from HelloLeads. Use after authentication to fetch the entire lead list. Returns empty list if none found.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "helloleads_list_lists",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/lists",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "lists"
          ]
        },
        "description": "Tool to retrieve all lead list keys from HelloLeads. Use when you need to enumerate available lists for lead insertion.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}