{
  "info": {
    "name": "Emelia — mcp.ai",
    "description": "REST API for the Emelia 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/emelia",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "emelia_add_contact_to_blacklist",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/contact/to/blacklist",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "contact",
            "to",
            "blacklist"
          ]
        },
        "description": "Tool to add a contact to the email blacklist. Use after confirming that no further emails should be sent to a specific address. Example: 'Add blocked_user@example.com to blacklist.'",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"email\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "emelia_add_contact_to_campaign",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/contact/to/campaign",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "contact",
            "to",
            "campaign"
          ]
        },
        "description": "Tool to add a contact to an email campaign. Use when you have collected subscriber details and want to enroll them in a campaign.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"contact\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "emelia_create_campaign",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/campaign",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "campaign"
          ]
        },
        "description": "Tool to create a new email campaign. Use after you have finalized the campaign name.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "emelia_create_linkedin_campaign",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/linkedin/campaign",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "linkedin",
            "campaign"
          ]
        },
        "description": "Tool to create a new LinkedIn campaign. Use when you need to launch a LinkedIn outreach sequence.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "emelia_create_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "webhook"
          ]
        },
        "description": "Tool to create a new webhook for campaign events. Use when you need to subscribe to activity updates after determining the campaign ID and desired events.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"type\": \"\",\n  \"events\": \"\",\n  \"hookUrl\": \"\",\n  \"campaignId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "emelia_delete_contact_from_campaign",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/contact/from/campaign",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "contact",
            "from",
            "campaign"
          ]
        },
        "description": "Tool to remove a contact from an email campaign. Use when you need to revoke a contact's subscription from a specific campaign. Note: this operation is irreversible.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"contact_id\": \"\",\n  \"campaign_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "emelia_delete_contact_from_linkedin_campaign",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/contact/from/linkedin/campaign",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "contact",
            "from",
            "linkedin",
            "campaign"
          ]
        },
        "description": "Tool to delete a contact from a LinkedIn campaign. Use when you need to remove a contact by campaign ID and contact URL. Call after confirming the contact exists in the campaign.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"url\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "emelia_delete_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "webhook"
          ]
        },
        "description": "Tool to delete a specific webhook. Use when you need to remove an existing webhook by URL after identifying the campaign.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"type\": \"\",\n  \"hookUrl\": \"\",\n  \"campaignId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "emelia_find_email_single_contact",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/find/email/single/contact",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "find",
            "email",
            "single",
            "contact"
          ]
        },
        "description": "Tool to initiate a job to find the email address of a specific contact. Use when you have the contact's full name and company details and want to retrieve their email address.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"country\": \"\",\n  \"fullname\": \"\",\n  \"companyName\": \"\",\n  \"companyWebsite\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "emelia_get_campaign_activities",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/campaign/activities",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "campaign",
            "activities"
          ]
        },
        "description": "Tool to retrieve activities for a specific email campaign. Use after obtaining the campaign ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"type\": \"\",\n  \"query\": \"\",\n  \"contactId\": \"\",\n  \"versionId\": \"\",\n  \"campaignId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "emelia_get_find_email_result",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/find/email/result",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "find",
            "email",
            "result"
          ]
        },
        "description": "Tool to retrieve the result of a previously initiated email find job. Use after initiating a find-email job to check its status and outcome.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"jobId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "emelia_get_find_phone_result",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/find/phone/result",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "find",
            "phone",
            "result"
          ]
        },
        "description": "Tool to retrieve the outcome of a previously initiated phone-find job. Use after starting a job to fetch its status and details by job ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"job_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "emelia_get_linkedin_campaign_activities",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/linkedin/campaign/activities",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "linkedin",
            "campaign",
            "activities"
          ]
        },
        "description": "Tool to retrieve activities for a campaign. Use when you need to inspect engagement events for a specific campaign.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0,\n  \"campaign_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "emelia_get_verify_email_result",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/verify/email/result",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "verify",
            "email",
            "result"
          ]
        },
        "description": "Tool to get the result of an email verification job. Use after initiating an email verification job to check its status and outcome.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"jobId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "emelia_initiate_email_verification_job",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/initiate/email/verification/job",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "initiate",
            "email",
            "verification",
            "job"
          ]
        },
        "description": "Tool to initiate an asynchronous email verification job.\"",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"email\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "emelia_initiate_phone_find_job",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/initiate/phone/find/job",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "initiate",
            "phone",
            "find",
            "job"
          ]
        },
        "description": "Tool to initiate a phone-find job for a single contact. Use when you want to retrieve a contact's phone number based on their email address.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"linkedinUrl\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "emelia_list_campaign_contacts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/campaign/contacts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "campaign",
            "contacts"
          ]
        },
        "description": "Tool to list contacts in a specific email campaign. Use when you need to retrieve campaign subscribers with optional pagination.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"campaignId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "emelia_list_campaigns",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/campaigns",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "campaigns"
          ]
        },
        "description": "Tool to retrieve all email campaigns. Use when you need to fetch the list of campaigns, with optional pagination or search filters.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"limit\": 0,\n  \"search\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "emelia_list_email_providers",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/email/providers",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "email",
            "providers"
          ]
        },
        "description": "Tool to retrieve all configured email providers. Use after setting up your email providers to view them.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "emelia_list_linkedin_campaigns",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/linkedin/campaigns",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "linkedin",
            "campaigns"
          ]
        },
        "description": "Tool to list all LinkedIn campaigns. Use when you need an overview of your LinkedIn campaigns and want to paginate results.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "emelia_list_webhooks",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/webhooks",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "webhooks"
          ]
        },
        "description": "Tool to retrieve all webhooks. Use when you need to fetch every configured webhook in Emelia.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "emelia_remove_contact_from_blacklist",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/contact/from/blacklist",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "contact",
            "from",
            "blacklist"
          ]
        },
        "description": "Tool to remove a contact or domain from the email blacklist. Use after verifying that the address or domain should no longer be blocked.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"email_or_domain\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}