# How to integrate Brevo MCP with Hermes

```json
{
  "title": "How to integrate Brevo MCP with Hermes",
  "toolkit": "Brevo",
  "toolkit_slug": "brevo",
  "framework": "Hermes",
  "framework_slug": "hermes-agent",
  "url": "https://composio.dev/toolkits/brevo/framework/hermes-agent",
  "markdown_url": "https://composio.dev/toolkits/brevo/framework/hermes-agent.md",
  "updated_at": "2026-05-06T08:03:55.663Z"
}
```

## Introduction

Hermes is a 24/7 autonomous agent that lives on your computer or server — it remembers what it learns and evolves as your usage grows.
This guide explains the easiest and most robust way to connect your Brevo account to Hermes. You can do this through either Composio Connect CLI or Composio Connect MCP. For personal use we recommend the CLI, but you won't go wrong with MCP either.

## Also integrate Brevo with

- [OpenAI Agents SDK](https://composio.dev/toolkits/brevo/framework/open-ai-agents-sdk)
- [Claude Agent SDK](https://composio.dev/toolkits/brevo/framework/claude-agents-sdk)
- [Claude Code](https://composio.dev/toolkits/brevo/framework/claude-code)
- [Claude Cowork](https://composio.dev/toolkits/brevo/framework/claude-cowork)
- [Codex](https://composio.dev/toolkits/brevo/framework/codex)
- [OpenClaw](https://composio.dev/toolkits/brevo/framework/openclaw)
- [CLI](https://composio.dev/toolkits/brevo/framework/cli)
- [Google ADK](https://composio.dev/toolkits/brevo/framework/google-adk)
- [LangChain](https://composio.dev/toolkits/brevo/framework/langchain)
- [Vercel AI SDK](https://composio.dev/toolkits/brevo/framework/ai-sdk)
- [Mastra AI](https://composio.dev/toolkits/brevo/framework/mastra-ai)
- [LlamaIndex](https://composio.dev/toolkits/brevo/framework/llama-index)
- [CrewAI](https://composio.dev/toolkits/brevo/framework/crew-ai)

## TL;DR

### What is Composio Connect?
Composio Connect is a consumer offering that lets anyone plug 1,000+ applications directly into their agent harness — including Hermes. It can:
- Search and load tools from relevant toolkits on-demand, reducing context usage.
- Chain multiple tools to accomplish complex workflows via a remote workbench, without excessive back-and-forth with the LLM.
- Manage app authentication end-to-end with zero manual overhead.

## Connect Brevo to Hermes

### Integrating Brevo with Hermes
### Using Composio Connect CLI
1. Install the Composio CLI
Run the install script directly, or paste https://composio.dev/hermes into your Hermes chat box to have it installed for you.

```bash
curl -fsSL https://composio.dev/install | bash
```

## What is the Brevo MCP server, and what's possible with it?

The Brevo MCP server is an implementation of the Model Context Protocol that connects your AI agent and assistants like Claude, Cursor, etc directly to your Brevo account. It provides structured and secure access to your email, SMS marketing, automation, and contact management tools, so your agent can perform actions like sending campaigns, managing contacts, creating templates, and retrieving account details on your behalf.
- Automated campaign management: Let your agent create, schedule, or delete SMS campaigns, including customizing recipients, sender details, and campaign content.
- Contact and company management: Easily add new contacts or companies, update existing records, or remove outdated ones to keep your database organized and up to date.
- Email template automation: Empower your agent to create, update, or delete email templates for consistent and efficient campaign design and execution.
- Account information retrieval: Ask your agent to fetch detailed account information, including plan details, credits, and profile data, for easy monitoring and reporting.
- Contact search and segmentation: Have your agent search for specific contacts or retrieve segmented contact lists based on filters like creation date, list IDs, or attributes.

## Supported Tools

| Tool slug | Name | Description |
|---|---|---|
| `BREVO_CREATE_A_COMPANY` | Create a company | This tool allows you to create a new company in your brevo account. |
| `BREVO_CREATE_OR_UPDATE_EMAIL_TEMPLATE` | Create or Update Email Template | 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. |
| `BREVO_CREATE_SMS_CAMPAIGN` | Create SMS Campaign | 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 schedule the campaign for a specific time. you can also enable unicode characters, add an organization prefix, and include unsubscribe instructions. |
| `BREVO_DELETE_COMPANY` | Delete a company | Deletes a company from brevo using its unique identifier. |
| `BREVO_DELETE_CONTACT` | Delete Contact | Deletes a contact from brevo using its unique identifier. |
| `BREVO_DELETE_EMAIL_TEMPLATE` | Delete Email Template | 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. |
| `BREVO_DELETE_SMS_CAMPAIGN` | Delete SMS Campaign | This tool deletes an existing sms campaign. |
| `BREVO_FIND_CONTACT` | Find Contact | This tool checks if a contact exists in brevo. it searches for a contact using either an email address or mobile number, with the email being prioritized if both are provided. |
| `BREVO_GET_ACCOUNT_INFO` | Get Account Information | This tool retrieves information about the brevo account, including account holder's email, first name, last name, company name, and address, as well as details about the current plan such as type, credits, start date, and end date. |
| `BREVO_GET_ALL_CONTACTS` | Get all contacts | This tool retrieves all contacts from your brevo account. it allows for pagination and filtering based on modification/creation dates, list ids, segment ids, and contact attributes. |
| `BREVO_GET_ALL_EMAIL_TEMPLATES` | Get all email templates | 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 filtering (templatestatus), pagination (limit, offset), and sorting (asc/desc). |
| `BREVO_GET_ALL_SENDERS` | Get All Senders | 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 managing and verifying sender identities. |
| `BREVO_GET_COMPANY_DETAILS` | Get Company Details | This tool retrieves the details of a specific company by its unique id. |
| `BREVO_GET_CONTACT_DETAILS` | Get Contact Details | 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. |
| `BREVO_GET_SMS_CAMPAIGN_DETAILS` | Get SMS Campaign Details | Retrieves the details of a specific sms campaign. |
| `BREVO_GET_SMS_CAMPAIGNS` | Get SMS Campaigns | This tool retrieves a list of all sms campaigns created in brevo. it supports filtering by status, start date, and end date, and also allows controlling the number of results returned (limit), the starting point in the list (offset), and the sort order (asc or desc). |
| `BREVO_LIST_ALL_COMPANIES` | List All Companies | This action retrieves a list of all companies stored in the brevo crm. it supports pagination and filtering by name and other attributes. |
| `BREVO_LIST_EMAIL_CAMPAIGNS` | List Email Campaigns | 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 count of campaigns and an array of campaign objects, each containing details like id, name, subject, type, status, scheduled date/time, sender information, and optionally, campaign statistics. |
| `BREVO_UPDATE_EMAIL_CAMPAIGN` | Update Email Campaign | Updates an email campaign in brevo using its unique identifier. |

## Supported Triggers

None listed.

## Creating MCP Server - Stand-alone vs Composio SDK

The Brevo MCP server provides comprehensive access to Brevo operations through Composio. Once connected, Hermes can perform all major Brevo actions on your behalf using natural language commands.

## Complete Code

None listed.

## Conclusion

### Way Forward
With Brevo connected, Hermes can now act on your behalf whenever it detects a relevant task or you ask it to.
From here, you can extend Hermes further:
- Connect more apps: Calendar, Slack, Notion, Linear, and hundreds of others are available through the same Composio Connect setup. Each new integration compounds what Hermes can do for you.
- Build workflows across tools: Once multiple apps are connected, Hermes can chain actions together — turn an email into a calendar invite, a Slack message into a Linear ticket, or a meeting note into a follow-up draft.
- Let it learn your patterns: The more you use Hermes, the better it gets at anticipating how you'd handle recurring tasks. Give it feedback on drafts and decisions, and it will adapt.
If you run into trouble or want to share what you've built, join the [community](https://discord.com/invite/composio) or check out the [Docs](https://docs.composio.dev?utm_source=toolkits&utm_medium=framework_template&utm_campaign=hermes&utm_content=docs) for deeper configuration options.

## How to build Brevo MCP Agent with another framework

- [OpenAI Agents SDK](https://composio.dev/toolkits/brevo/framework/open-ai-agents-sdk)
- [Claude Agent SDK](https://composio.dev/toolkits/brevo/framework/claude-agents-sdk)
- [Claude Code](https://composio.dev/toolkits/brevo/framework/claude-code)
- [Claude Cowork](https://composio.dev/toolkits/brevo/framework/claude-cowork)
- [Codex](https://composio.dev/toolkits/brevo/framework/codex)
- [OpenClaw](https://composio.dev/toolkits/brevo/framework/openclaw)
- [CLI](https://composio.dev/toolkits/brevo/framework/cli)
- [Google ADK](https://composio.dev/toolkits/brevo/framework/google-adk)
- [LangChain](https://composio.dev/toolkits/brevo/framework/langchain)
- [Vercel AI SDK](https://composio.dev/toolkits/brevo/framework/ai-sdk)
- [Mastra AI](https://composio.dev/toolkits/brevo/framework/mastra-ai)
- [LlamaIndex](https://composio.dev/toolkits/brevo/framework/llama-index)
- [CrewAI](https://composio.dev/toolkits/brevo/framework/crew-ai)

## Related Toolkits

- [Reddit](https://composio.dev/toolkits/reddit) - Reddit is a social news platform with thriving user-driven communities (subreddits). It's the go-to place for discussion, content sharing, and viral marketing.
- [Facebook](https://composio.dev/toolkits/facebook) - Facebook is a social media and advertising platform for businesses and creators. It helps you connect, share, and manage content across your public Facebook Pages.
- [Linkedin](https://composio.dev/toolkits/linkedin) - LinkedIn is a professional networking platform for connecting, sharing content, and engaging with business opportunities. It's the go-to place for building your professional brand and unlocking new career connections.
- [Active campaign](https://composio.dev/toolkits/active_campaign) - ActiveCampaign is a marketing automation and CRM platform for managing email campaigns, sales pipelines, and customer segmentation. It helps businesses engage customers and drive growth through smart automation and targeted outreach.
- [ActiveTrail](https://composio.dev/toolkits/active_trail) - ActiveTrail is a user-friendly email marketing and automation platform. It helps you reach subscribers and automate campaigns with ease.
- [Ahrefs](https://composio.dev/toolkits/ahrefs) - Ahrefs is an SEO and marketing platform for site audits, keyword research, and competitor insights. It helps you improve search rankings and drive organic traffic.
- [Amcards](https://composio.dev/toolkits/amcards) - AMCards lets you create and mail personalized greeting cards online. Build stronger customer relationships with easy, automated card campaigns.
- [Beamer](https://composio.dev/toolkits/beamer) - Beamer is a news and changelog platform for in-app announcements and feature updates. It helps companies boost user engagement by sharing news where users are most active.
- [Benchmark email](https://composio.dev/toolkits/benchmark_email) - Benchmark Email is a platform for creating, sending, and tracking email campaigns. It's built to help you engage audiences and analyze results—all in one place.
- [Bigmailer](https://composio.dev/toolkits/bigmailer) - BigMailer is an email marketing platform for managing multiple brands with white-labeling and automation. It helps teams streamline campaigns and simplify integration with Amazon SES.
- [Brandfetch](https://composio.dev/toolkits/brandfetch) - Brandfetch is an API that delivers company logos, colors, and visual branding assets. It helps marketers and developers keep brand visuals consistent everywhere.
- [Campayn](https://composio.dev/toolkits/campayn) - Campayn is an email marketing platform for creating, sending, and managing campaigns. It helps businesses engage contacts and grow audiences with easy-to-use tools.
- [Cardly](https://composio.dev/toolkits/cardly) - Cardly is a platform for creating and sending personalized direct mail to customers. It helps businesses break through the digital clutter by getting real engagement via physical mailboxes.
- [ClickSend](https://composio.dev/toolkits/clicksend) - ClickSend is a cloud-based SMS and email marketing platform for businesses. It streamlines communication by enabling quick message delivery and contact management.
- [Crustdata](https://composio.dev/toolkits/crustdata) - CrustData is an AI-powered data intelligence platform for real-time company and people data. It helps B2B sales teams, AI SDRs, and investors react to live business signals.
- [Curated](https://composio.dev/toolkits/curated) - Curated is a platform for collecting, curating, and publishing newsletters. It streamlines content aggregation and distribution for creators and teams.
- [Customerio](https://composio.dev/toolkits/customerio) - Customer.io is a customer engagement platform for targeted messaging across email, SMS, and push. Easily automate, segment, and track communications with your audience.
- [Cutt ly](https://composio.dev/toolkits/cutt_ly) - Cutt.ly is a URL shortening service for managing and analyzing links. Streamline your workflows with quick, trackable, and branded short URLs.
- [Demio](https://composio.dev/toolkits/demio) - Demio is webinar software built for marketers, offering both live and automated sessions with interactive features. It helps teams engage audiences and optimize lead generation through detailed analytics.
- [Doppler marketing automation](https://composio.dev/toolkits/doppler_marketing_automation) - Doppler marketing automation is a platform for creating, sending, and tracking email campaigns. It helps you automate marketing workflows and manage subscriber lists for better engagement.

## Frequently Asked Questions

### What are the differences in Tool Router MCP and Brevo MCP?

With a standalone Brevo MCP server, the agents and LLMs can only access a fixed set of Brevo tools tied to that server. However, with the Composio Tool Router, agents can dynamically load tools from Brevo and many other apps based on the task at hand, all through a single MCP endpoint.

### Can I use Tool Router MCP with Hermes?

Yes, you can. Hermes fully supports MCP integration. You get structured tool calling, message history handling, and model orchestration while Tool Router takes care of discovering and serving the right Brevo tools.

### Can I manage the permissions and scopes for Brevo while using Tool Router?

Yes, absolutely. You can configure which Brevo scopes and actions are allowed when connecting your account to Composio. You can also bring your own OAuth credentials or API configuration so you keep full control over what the agent can do.

### How safe is my data with Composio Tool Router?

All sensitive data such as tokens, keys, and configuration is fully encrypted at rest and in transit. Composio is SOC 2 Type 2 compliant and follows strict security practices so your Brevo data and credentials are handled as safely as possible.

---
[See all toolkits](https://composio.dev/toolkits) · [Composio docs](https://docs.composio.dev/llms.txt)
