{
  "info": {
    "name": "LeadBoxer — mcp.ai",
    "description": "REST API for the LeadBoxer 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/leadboxer",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "leadboxer_add_or_update_lead_tags",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/or/update/lead/tags",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "or",
            "update",
            "lead",
            "tags"
          ]
        },
        "description": "Tool to add or update lead tags in LeadBoxer. Use when you need to manage lead tags by adding new tags, removing specific tags, or overwriting all existing tags for a specified user.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"action\": \"\",\n  \"userId\": \"\",\n  \"leadTags\": \"\",\n  \"datasetId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "leadboxer_delete_ctd",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/ctd",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "ctd"
          ]
        },
        "description": "Tool to delete a custom tracking domain entry for a dataset. Use when you need to remove a specific custom tracking domain (CTD) associated with a dataset in LeadBoxer.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ctd\": \"\",\n  \"email\": \"\",\n  \"datasetId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "leadboxer_get_events",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/events",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "events"
          ]
        },
        "description": "Tool to fetch events for specified sessions from LeadBoxer. Use when you need to retrieve behavioral data including pageviews, clicks, form submissions, email interactions, and custom events. Events c",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"email\": \"\",\n  \"limit\": 0,\n  \"userId\": \"\",\n  \"segmentId\": \"\",\n  \"sessionId\": \"\",\n  \"smartlistId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "leadboxer_get_lead_score_formula",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/lead/score/formula",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "lead",
            "score",
            "formula"
          ]
        },
        "description": "Tool to fetch the lead score formula for a specific dataset. Use when you need to understand how lead scores are calculated for records in a dataset. The formula defines scoring based on criteria type",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"email\": \"\",\n  \"datasetId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "leadboxer_get_sessions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/sessions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "sessions"
          ]
        },
        "description": "Tool to fetch sessions for a specified lead ID from LeadBoxer. Use when you need to retrieve session data for a user, with optional filtering by email, user ID, Smartlist ID, or segment ID. A session ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"email\": \"\",\n  \"limit\": 0,\n  \"leadId\": \"\",\n  \"userId\": \"\",\n  \"segmentId\": \"\",\n  \"smartlistId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "leadboxer_log_event",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/log/event",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "log",
            "event"
          ]
        },
        "description": "Tool to track server-side events in LeadBoxer. Use when tracking backend events, page views, or custom activities from your server. This endpoint supports tracking user interactions, conversions, and ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ip\": \"\",\n  \"lc\": \"\",\n  \"ti\": \"\",\n  \"tz\": \"\",\n  \"eid\": \"\",\n  \"ref\": \"\",\n  \"sid\": \"\",\n  \"uid\": \"\",\n  \"email\": \"\",\n  \"proxy\": false,\n  \"locale\": \"\",\n  \"userId\": \"\",\n  \"browser\": \"\",\n  \"platform\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "leadboxer_management_ctd",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/management/ctd",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "management",
            "ctd"
          ]
        },
        "description": "Tool to fetch custom tracking domain entries for a dataset. Use when you need to retrieve all custom tracking domains that are created or in progress for a specific datasetId.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"email\": \"\",\n  \"datasetId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "leadboxer_post_event",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/post/event",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "post",
            "event"
          ]
        },
        "description": "Tool to send event data for tracking user activities via POST request. Use when tracking events by sending data in the request body with application/x-www-form-urlencoded format.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"si\": \"\",\n  \"ti\": \"\",\n  \"sid\": \"\",\n  \"uid\": \"\",\n  \"name\": \"\",\n  \"page\": \"\",\n  \"email\": \"\",\n  \"proxy\": false,\n  \"company\": \"\",\n  \"referrer\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "leadboxer_views_lead_detail",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/views/lead/detail",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "views",
            "lead",
            "detail"
          ]
        },
        "description": "Tool to fetch detailed information about a lead based on filters. Use when you need comprehensive lead data for a specific lead ID. The default view type is B2B. Note: On initial pageview, there may b",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"email\": \"\",\n  \"leadId\": \"\",\n  \"noShortenEmail\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}