{
  "info": {
    "name": "Dropcontact — mcp.ai",
    "description": "REST API for the Dropcontact 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/dropcontact",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "dropcontact_create_webhook_subscription",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/webhook/subscription",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "webhook",
            "subscription"
          ]
        },
        "description": "Tool to create a new webhook subscription for receiving automatic notifications when enrichment results are ready. Use this instead of polling GET /v1/enrich/all to receive push notifications when con",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"active\": false,\n  \"period_s\": 0,\n  \"event_type\": \"\",\n  \"callback_url\": \"\",\n  \"max_webhooks_per_period\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "dropcontact_delete_webhook_subscription",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/webhook/subscription",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "webhook",
            "subscription"
          ]
        },
        "description": "Tool to delete a webhook subscription. Use when you need to remove a configured webhook and stop receiving notifications. Alternatively, you can pause a subscription by setting it to inactive using th",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"subscription_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "dropcontact_enrich_contacts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/enrich/contacts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "enrich",
            "contacts"
          ]
        },
        "description": "Initiates asynchronous batch enrichment for up to 250 contacts with email finding, validation, and company information. Returns a request_id that must be used with the 'Retrieve Enrichment Results' ac",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"data\": \"\",\n  \"siren\": false,\n  \"language\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "dropcontact_list_webhook_subscriptions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/webhook/subscriptions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "webhook",
            "subscriptions"
          ]
        },
        "description": "Tool to list webhook subscriptions. Use when you need to inspect your configured webhooks.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "dropcontact_list_webhook_subscriptions_v2",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/webhook/subscriptions/v2",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "webhook",
            "subscriptions",
            "v2"
          ]
        },
        "description": "Tool to list all webhook subscriptions configured for the account. Returns webhook URLs, event types, and subscription details. Use when you need to inspect your configured webhooks.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "dropcontact_retrieve_enrichment_results",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/enrichment/results",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "enrichment",
            "results"
          ]
        },
        "description": "Retrieves enriched contact data by request ID after submitting contacts for enrichment. Use this tool to fetch the results of a contact enrichment request created with the 'Batch Enrich Contacts' acti",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"request_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "dropcontact_update_webhook_subscription",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/webhook/subscription",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "webhook",
            "subscription"
          ]
        },
        "description": "Tool to update an existing webhook subscription. Use when you need to modify the callback URL, rate limiting settings, or active status. The event_type field cannot be changed after creation.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"active\": false,\n  \"period_s\": 0,\n  \"callback_url\": \"\",\n  \"subscription_id\": \"\",\n  \"max_webhooks_per_period\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}