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 キーを発行 — 完了です。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 |