{
  "info": {
    "name": "Brevo — mcp.ai",
    "description": "REST API for the Brevo 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/brevo",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "brevo_create_a_company",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/a/company",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "a",
            "company"
          ]
        },
        "description": "Creates a new company record in your Brevo CRM. Companies can be used to organize contacts and deals, track business relationships, and manage customer accounts. You can add custom attributes, link ex",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"attributes\": {},\n  \"countryCode\": 0,\n  \"linkedDealsIds\": \"\",\n  \"linkedContactsIds\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "brevo_create_contact_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/contact/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "contact",
            "list"
          ]
        },
        "description": "Creates a new contact list (audience) in Brevo within a specified folder. Contact lists are used to organize and segment contacts for email campaigns, SMS campaigns, and marketing automation workflows",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"folderId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "brevo_create_or_update_email_template",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/or/update/email/template",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "or",
            "update",
            "email",
            "template"
          ]
        },
        "description": "This tool creates a new email template or updates an existing one in Brevo. If a 'templateId' is provided, it performs an update; otherwise, it creates a new template.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"tag\": \"\",\n  \"sender\": {},\n  \"htmlUrl\": \"\",\n  \"replyTo\": \"\",\n  \"subject\": \"\",\n  \"toField\": \"\",\n  \"isActive\": false,\n  \"templateId\": 0,\n  \"htmlContent\": \"\",\n  \"templateName\": \"\",\n  \"attachmentUrl\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "brevo_create_sms_campaign",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/sms/campaign",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "sms",
            "campaign"
          ]
        },
        "description": "This tool allows you to create a new SMS campaign in Brevo. You can specify the campaign name, sender, content, recipients (by providing list IDs, exclusion list IDs, or segment IDs), and optionally s",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"sender\": \"\",\n  \"content\": \"\",\n  \"recipients\": {},\n  \"scheduledAt\": \"\",\n  \"unicodeEnabled\": false,\n  \"organisationPrefix\": \"\",\n  \"unsubscribeInstruction\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "brevo_delete_company",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/company",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "company"
          ]
        },
        "description": "Deletes a company from Brevo using its unique identifier.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "brevo_delete_contact",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/contact",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "contact"
          ]
        },
        "description": "Deletes a contact from Brevo by email, contact ID, external ID, phone number, WhatsApp ID, or landline number. Use the identifier_type parameter to specify the type of identifier when using ext_id, ph",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"identifier\": \"\",\n  \"identifier_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "brevo_delete_email_template",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/email/template",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "email",
            "template"
          ]
        },
        "description": "This tool deletes an inactive email template from Brevo. You need to provide the 'templateId' of the email template you want to delete. Only inactive templates can be deleted.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"template_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "brevo_delete_sms_campaign",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/sms/campaign",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "sms",
            "campaign"
          ]
        },
        "description": "This tool deletes an existing SMS campaign.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"campaign_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "brevo_get_account_info",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/account/info",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "account",
            "info"
          ]
        },
        "description": "Retrieves comprehensive information about the authenticated Brevo account. Returns account details including: - Account holder information (email, first name, last name, company name) - Complete addre",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "brevo_get_all_contacts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/contacts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "contacts"
          ]
        },
        "description": "This tool retrieves all contacts from your Brevo account with pagination and filtering based on modification/creation dates, list IDs, segment IDs, and contact attributes. For complete retrieval, iter",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sort\": \"\",\n  \"limit\": 0,\n  \"offset\": 0,\n  \"listIds\": \"\",\n  \"segmentId\": 0,\n  \"createdSince\": \"\",\n  \"modifiedSince\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "brevo_get_all_email_templates",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/email/templates",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "email",
            "templates"
          ]
        },
        "description": "This tool retrieves a list of all email templates created in your Brevo account. It corresponds to the GET /v3/smtp/templates endpoint as per the Brevo API documentation, with optional parameters for ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sort\": \"\",\n  \"limit\": 0,\n  \"offset\": 0,\n  \"templateStatus\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "brevo_get_all_senders",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/senders",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "senders"
          ]
        },
        "description": "This tool retrieves a list of all senders associated with the Brevo account. Senders are the email addresses or domains that are authorized to send emails through Brevo. This action can be useful for ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ip\": \"\",\n  \"domain\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "brevo_get_company_details",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/company/details",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "company",
            "details"
          ]
        },
        "description": "Retrieves detailed information about a specific company from Brevo's CRM. Returns company data including its unique identifier, custom attributes, and lists of linked contact IDs and deal IDs. This is",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "brevo_get_contact_details",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/contact/details",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "contact",
            "details"
          ]
        },
        "description": "This tool retrieves detailed information about a specific contact in Brevo. You can identify the contact using their email address (URL-encoded), their unique contact ID, or their SMS attribute value.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"identifier\": \"\",\n  \"mobile_number\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "brevo_get_contact_lists",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/contact/lists",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "contact",
            "lists"
          ]
        },
        "description": "Retrieves all contact lists from your Brevo account with pagination support. Returns list IDs, names, subscriber counts, and folder associations. Use this to discover available lists or obtain list ID",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sort\": \"\",\n  \"limit\": 0,\n  \"offset\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "brevo_get_email_campaign_details",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/email/campaign/details",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "email",
            "campaign",
            "details"
          ]
        },
        "description": "Tool to retrieve full configuration and content for a specific email campaign. Use when you need complete campaign details including HTML content, recipients, statistics, and all configuration setting",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"statistics\": \"\",\n  \"campaign_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "brevo_get_sms_campaign_details",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/sms/campaign/details",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "sms",
            "campaign",
            "details"
          ]
        },
        "description": "Retrieves the details of a specific SMS campaign. This action fetches complete information about an SMS campaign including its status, content, sender, scheduling, recipients, and statistics.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"campaign_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "brevo_get_sms_campaigns",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/sms/campaigns",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "sms",
            "campaigns"
          ]
        },
        "description": "Retrieves all SMS campaigns from your Brevo account with optional filtering and pagination. Use this tool to: - List all SMS campaigns with their details (name, status, content, sender, dates) - Filte",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sort\": \"\",\n  \"limit\": 0,\n  \"offset\": 0,\n  \"status\": \"\",\n  \"endDate\": \"\",\n  \"startDate\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "brevo_list_all_companies",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/all/companies",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "all",
            "companies"
          ]
        },
        "description": "This action retrieves a list of all companies stored in the Brevo CRM. It supports pagination and filtering by name and other attributes.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"sort\": \"\",\n  \"limit\": 0,\n  \"sortBy\": \"\",\n  \"filters\": \"\",\n  \"linkedDealsIds\": \"\",\n  \"linkedContactsIds\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "brevo_list_email_campaigns",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/email/campaigns",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "email",
            "campaigns"
          ]
        },
        "description": "This tool retrieves a list of all email campaigns associated with the user's Brevo account. It allows filtering by campaign type, status, start date, and end date. The response includes the total coun",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sort\": \"\",\n  \"type\": \"\",\n  \"limit\": 0,\n  \"offset\": 0,\n  \"status\": \"\",\n  \"endDate\": \"\",\n  \"startDate\": \"\",\n  \"statistics\": \"\",\n  \"excludeHtmlContent\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "brevo_update_email_campaign",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/email/campaign",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "email",
            "campaign"
          ]
        },
        "description": "Updates an email campaign in Brevo using its unique identifier.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"tag\": \"\",\n  \"name\": \"\",\n  \"footer\": \"\",\n  \"header\": \"\",\n  \"params\": {},\n  \"sender\": {},\n  \"htmlUrl\": \"\",\n  \"replyTo\": \"\",\n  \"subject\": \"\",\n  \"toField\": \"\",\n  \"subjectA\": \"\",\n  \"subjectB\": \"\",\n  \"abTesting\": false,\n  \"recurring\": false,\n  \"splitRule\": 0,\n  \"recipients\": {},\n  \"campaign_id\": 0,\n  \"htmlContent\": \"\",\n  \"previewText\": \"\",\n  \"scheduledAt\": \"\",\n  \"utmCampaign\": \"\",\n  \"winnerDelay\": 0,\n  \"increaseRate\": 0,\n  \"initialQuota\": 0,\n  \"mirrorActive\": false,\n  \"updateFormId\": \"\",\n  \"attachmentUrl\": \"\",\n  \"ipWarmupEnable\": false,\n  \"sendAtBestTime\": false,\n  \"winnerCriteria\": \"\",\n  \"unsubscriptionPageId\": \"\",\n  \"inlineImageActivation\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}