No install? Use cloud.anythingmcp.com directly.
Sign in, install the Brevo in one click, paste the credentials, mint an MCP API key — done. No Docker, no git clone, no local server to run.
💡 ¿Sin instalación? Usa cloud.anythingmcp.com directamente. Inicia sesión, pulsa Connectors → Brevo, pega tus credenciales, genera una MCP API key — listo. Sin Docker, sin
git clone, sin servidor local.
Brevo
Drive Brevo (formerly Sendinblue) — transactional email/SMS, marketing campaigns, contacts and lists — from any AI agent. 14 tools, api-key header auth, EU-based deliverability.
Configuración
Setup:
- Sign in to https://app.brevo.com → top-right avatar → SMTP & API → API Keys → Generate a new API key.
- Name it ('AnythingMCP'). It's prefixed
xkeysib-. SetBREVO_API_KEY.
Authentication: custom header api-key: ${BREVO_API_KEY} (lowercase header name — Brevo-specific). The adapter sets it via API_KEY profile.
Verified sender: just like SendGrid, you must verify your sending domain or sender email before transactional email actually delivers (otherwise it lands in spam or is rejected). Brevo → Senders & IP → Senders → Add a sender OR domain authentication via SPF/DKIM.
…(continued in the in-app connector instructions)
Requisitos previos: BREVO_API_KEY
Instalar el conector localmente
git clone https://github.com/HelpCode-ai/anythingmcp.git
cd anythingmcp && docker compose up -d
Abre http://localhost:3000/connectors/store, elige Brevo e introduce las variables listadas en los Requisitos previos.
Herramientas disponibles
| Tool | What it does |
|---|---|
brevo_get_account | Return account info: companyName, email, firstName, lastName, address, plan (credits, type, creditsType), relay servers |
brevo_send_transactional_email | Send a transactional email |
brevo_send_transactional_sms | Send a transactional SMS |
brevo_list_contacts | List contacts (paginated) |
brevo_get_contact | Fetch a contact by email or ID |
brevo_create_contact | Create or update a contact (upsert by email) |
brevo_update_contact | Partial update of an existing contact |
brevo_list_contact_lists | List contact lists |
brevo_create_contact_list | Create a new list |
brevo_list_folders | List folders (organize contact lists) |
brevo_list_email_campaigns | List email campaigns (newsletters) |
brevo_create_email_campaign | Create an email campaign (does NOT send — see brevo_send_email_campaign_now to fire) |
brevo_send_email_campaign_now | Send a previously-created email campaign immediately (overrides any scheduledAt) |
brevo_get_transactional_email_report | Get aggregated transactional email stats for a date range: total requests, delivered, hardBounces, softBounces, opened, clicked, spam |