{
  "info": {
    "name": "Leverly — mcp.ai",
    "description": "REST API for the Leverly 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/leverly",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "leverly_create_call",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/call",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "call"
          ]
        },
        "description": "Tool to create a new call/lead in Leverly system. Sends lead information to trigger an instant phone call to your sales team. Use when integrating external systems (CRM, forms, lead providers) with Le",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"zip\": \"\",\n  \"area\": \"\",\n  \"city\": \"\",\n  \"email\": \"\",\n  \"state\": \"\",\n  \"Phone1\": \"\",\n  \"Phone2\": \"\",\n  \"Phone3\": \"\",\n  \"Phone4\": \"\",\n  \"keyword\": \"\",\n  \"program\": \"\",\n  \"address1\": \"\",\n  \"callerId\": \"\",\n  \"comments\": \"\",\n  \"lastName\": \"\",\n  \"location\": \"\",\n  \"repPhone\": \"\",\n  \"AccountID\": \"\",\n  \"callDelay\": 0,\n  \"firstName\": \"\",\n  \"leadSource\": \"\",\n  \"companyName\": \"\",\n  \"routingType\": \"\",\n  \"vendorLeadId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "leverly_list_reattempts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/reattempts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "reattempts"
          ]
        },
        "description": "Tool to list all reattempts in Leverly. Use when you need to inspect the history of ingestion reattempts before taking further action.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "leverly_stop_reattempts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/stop/reattempts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "stop",
            "reattempts"
          ]
        },
        "description": "Tool to stop ongoing reattempts for a lead in Leverly. Use when you need to halt retries for a given reattempt ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"reattempt_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}