{
  "info": {
    "name": "Bouncer — mcp.ai",
    "description": "REST API for the Bouncer 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/bouncer",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "bouncer_check_toxicity_list_job_status",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/check/toxicity/list/job/status",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "check",
            "toxicity",
            "list",
            "job",
            "status"
          ]
        },
        "description": "Tool to check the status of a specific toxicity list job. Use after creating a toxicity list job to poll its status until completion.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bouncer_create_batch_request",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/batch/request",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "batch",
            "request"
          ]
        },
        "description": "Initiates an asynchronous batch email verification request. Use when you have multiple emails to verify. Returns a batch ID for tracking - use BOUNCER_GET_BATCH_RESULTS to retrieve verification result",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"items\": \"\",\n  \"callback\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bouncer_create_toxicity_list_job",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/toxicity/list/job",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "toxicity",
            "list",
            "job"
          ]
        },
        "description": "Tool to create a toxicity analysis job for a list of email addresses. Use when you need to batch-process toxicity checks for multiple emails at once.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"emails\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bouncer_delete_batch_request",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/batch/request",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "batch",
            "request"
          ]
        },
        "description": "Deletes a batch email verification request and all associated emails and results. Use when you need to permanently remove batch data. This operation is idempotent - calling it multiple times on the sa",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"batch_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bouncer_delete_toxicity_list_job",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/toxicity/list/job",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "toxicity",
            "list",
            "job"
          ]
        },
        "description": "Tool to delete a specific toxicity list job. Use when you need to remove a completed or unwanted toxicity analysis job after confirming its ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bouncer_finish_batch",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/finish/batch",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "finish",
            "batch"
          ]
        },
        "description": "Tool to mark a batch verification process as finished early. Use when you need to stop batch processing before all emails are verified and reclaim credits for unprocessed emails. IMPORTANT: The batch ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"batch_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bouncer_get_batch_results",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/batch/results",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "batch",
            "results"
          ]
        },
        "description": "Tool to retrieve the results of a batch verification process. Use after submitting a batch to fetch all processed email verification outcomes. Note: If the batch is still processing, the API will retu",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"batch_id\": \"\",\n  \"download\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bouncer_get_credits",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/credits",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "credits"
          ]
        },
        "description": "Tool to retrieve the current credit balance for the account. Use when you need to check available credits before performing verification operations.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bouncer_verify_domain",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/verify/domain",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "verify",
            "domain"
          ]
        },
        "description": "Tool to verify the validity and configuration of a domain. Use when you need to confirm the domain's MX records and catch-all behavior.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"domain\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bouncer_verify_email",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/verify/email",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "verify",
            "email"
          ]
        },
        "description": "Tool to verify a single email address in real-time. Use when validating email entry form inputs instantly.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"email\": \"\",\n  \"timeout\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}