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.
💡 无需安装? 直接使用 cloud.anythingmcp.com。 登录、点击 Connectors → Brevo、粘贴凭证、生成 MCP API key — 完成。无 Docker、无
git clone、无本地服务器。
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.
设置
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)
前提条件: BREVO_API_KEY
本地安装连接器
git clone https://github.com/HelpCode-ai/anythingmcp.git
cd anythingmcp && docker compose up -d
打开 http://localhost:3000/connectors/store,选择 Brevo 并填入前提条件中列出的环境变量。
可用工具
| 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 |