# How to integrate Mailerlite MCP with Hermes

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

## 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 Mailerlite 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 Mailerlite with

- [OpenAI Agents SDK](https://composio.dev/toolkits/mailerlite/framework/open-ai-agents-sdk)
- [Claude Agent SDK](https://composio.dev/toolkits/mailerlite/framework/claude-agents-sdk)
- [Claude Code](https://composio.dev/toolkits/mailerlite/framework/claude-code)
- [Claude Cowork](https://composio.dev/toolkits/mailerlite/framework/claude-cowork)
- [Codex](https://composio.dev/toolkits/mailerlite/framework/codex)
- [OpenClaw](https://composio.dev/toolkits/mailerlite/framework/openclaw)
- [CLI](https://composio.dev/toolkits/mailerlite/framework/cli)
- [Google ADK](https://composio.dev/toolkits/mailerlite/framework/google-adk)
- [LangChain](https://composio.dev/toolkits/mailerlite/framework/langchain)
- [Vercel AI SDK](https://composio.dev/toolkits/mailerlite/framework/ai-sdk)
- [Mastra AI](https://composio.dev/toolkits/mailerlite/framework/mastra-ai)
- [LlamaIndex](https://composio.dev/toolkits/mailerlite/framework/llama-index)
- [CrewAI](https://composio.dev/toolkits/mailerlite/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 Mailerlite to Hermes

### Integrating Mailerlite 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 Mailerlite MCP server, and what's possible with it?

The Mailerlite MCP server is an implementation of the Model Context Protocol that connects your AI agent and assistants like Claude, Cursor, etc directly to your Mailerlite account. It provides structured and secure access to your email marketing tools, so your agent can create campaigns, manage subscribers, automate workflows, and oversee your shop integrations with ease.
- Campaign automation and workflow management: Instruct your agent to create or delete automations, streamlining your email marketing processes and ensuring timely communication with your audience.
- E-commerce customer and shop integration: Let your agent create, update, or remove e-commerce customers and shops for seamless sales tracking, customer onboarding, or data syncing.
- Subscriber group and segment organization: Have your agent create custom fields, new subscriber groups, or targeted segments so you can send highly personalized campaigns.
- Webhook registration for real-time updates: Direct your agent to set up webhooks for specific events, enabling instant notifications and integrations with other systems as actions happen in Mailerlite.
- Efficient cleanup and management: Ask your agent to delete outdated automations, customers, or shops, helping you keep your Mailerlite workspace organized and up to date.

## Supported Tools

| Tool slug | Name | Description |
|---|---|---|
| `MAILERLITE_CREATE_AUTOMATION` | Create automation | Create automation |
| `MAILERLITE_CREATE_ECOMMERCE_CUSTOMER` | Create/Update E-commerce Customer | Tool to create or update a customer record for a shop. use when syncing shop customers or onboarding new purchases. |
| `MAILERLITE_CREATE_ECOMMERCE_SHOP` | Create E-commerce Shop | Tool to connect a new e-commerce shop. use when you need to integrate a store for automations, product imports, and sales tracking. |
| `MAILERLITE_CREATE_FIELD` | Create Field | Tool to create a new custom field. use when distinct subscriber attributes are needed before assigning or updating subscriber data. call once per field key. |
| `MAILERLITE_CREATE_GROUP` | Create Group | Tool to create a new subscriber group. use after deciding the group name for categorization. |
| `MAILERLITE_CREATE_SEGMENT` | Create Segment | Tool to create a new subscriber segment. use when grouping subscribers by custom criteria before sending targeted campaigns. |
| `MAILERLITE_CREATE_WEBHOOK` | Create Webhook | Tool to register a new webhook url for specified event types. use when you need real-time notifications for selected mailerlite events. |
| `MAILERLITE_DELETE_AUTOMATION` | Delete Automation | Tool to delete an automation workflow by id. use when you need to remove an automation after confirming it's no longer needed. returns success=true on 204 no content. |
| `MAILERLITE_DELETE_ECOMMERCE_CUSTOMER` | Delete E-commerce Customer | Tool to delete a customer from an e-commerce shop by ids. use when you need to remove a specific customer from your mailerlite store. |
| `MAILERLITE_DELETE_ECOMMERCE_SHOP` | Delete E-commerce Shop | Tool to disconnect an e-commerce shop by id. use when you have the shop's unique identifier and want to remove it from your mailerlite account. |
| `MAILERLITE_DELETE_FIELD` | Delete Field | Tool to delete a custom field. use when a field is obsolete and you need to remove it from your mailerlite account. returns success=true on 204 no content. |
| `MAILERLITE_DELETE_GROUP` | Delete Group | Tool to delete a subscriber group by id. use when you need to remove an existing subscriber group from your mailerlite account. returns success=true on 204 no content. |
| `MAILERLITE_DELETE_SEGMENT` | Delete Segment | Tool to delete a segment by id. use when you need to remove an existing segment from your mailerlite account. returns success=true on 204 no content. |
| `MAILERLITE_DELETE_SUBSCRIBER` | Delete Subscriber | Tool to delete a subscriber by id. use when you have the subscriber id and want to remove them from your mailerlite account. returns success=true on 204 no content. |
| `MAILERLITE_DELETE_WEBHOOK` | Delete Webhook | Tool to remove a webhook subscription by id. use when you need to delete a webhook after confirming it is no longer needed. returns success=true on 204 no content. |
| `MAILERLITE_FETCH_TOTAL_ECOMMERCE_CUSTOMERS_COUNT` | Fetch Total E-commerce Customers Count | Tool to fetch total ecommerce customers count for a shop. use when only the aggregate count is required without retrieving detailed records. |
| `MAILERLITE_GET_ACCOUNT_INFO` | Get Account Info | Tool to retrieve basic mailerlite account details. use when you need to verify authentication and review account metadata. |
| `MAILERLITE_GET_ACCOUNT_STATS` | Get Account Stats | Tool to retrieve usage statistics and performance metrics for the account. use after sending campaigns to analyze engagement and deliverability. |
| `MAILERLITE_GET_AUTOMATION` | Get Automation | Tool to retrieve details of a specific automation by id. use when you have the automation id and need its full configuration. example: "get automation 7267552". |
| `MAILERLITE_GET_CAMPAIGNS` | Get Campaigns | Tool to retrieve a list of all campaigns. use when you need to fetch campaigns optionally filtered by status or type, with pagination. |
| `MAILERLITE_GET_ECOMMERCE_CUSTOMER` | Get E-commerce Customer | Tool to fetch details of a customer by shop and customer id. use after confirming shop id and customer id. |
| `MAILERLITE_GET_ECOMMERCE_CUSTOMERS` | Get E-commerce Customers | Tool to list customers for a specific shop. use when you need to retrieve and paginate ecommerce customers after you have a shop id. example: "list customers for shop 123". |
| `MAILERLITE_GET_ECOMMERCE_SHOP` | Get E-commerce Shop | Tool to fetch details of a specific e-commerce shop by id. use when you need detailed configuration or stats of a connected shop. |
| `MAILERLITE_GET_ECOMMERCE_SHOPS` | Get E-commerce Shops | Tool to list all e-commerce shops connected to the account. use when you need to retrieve and paginate shop listings for an account. |
| `MAILERLITE_GET_FIELDS` | Get Fields | Tool to retrieve all custom fields defined in the account. use when you need to list or paginate through subscriber custom fields. |
| `MAILERLITE_GET_GROUPS` | Get Groups | Tool to retrieve all subscriber groups. use when you need to list or paginate through subscriber groups. |
| `MAILERLITE_GET_GROUP_SUBSCRIBERS` | Get Group Subscribers | Tool to list subscribers within a group by id. use when you need to retrieve subscribers belonging to a specific mailerlite group before targeted campaigns. use after confirming the group id is valid. |
| `MAILERLITE_GET_SEGMENTS` | Get Segments | Tool to retrieve all segments in the account. use when you need to list or paginate through segments. |
| `MAILERLITE_GET_SUBSCRIBERS` | Get Subscribers | Tool to retrieve all subscribers. use after connecting account and when listing subscribers by status or paginating. limited by mailerlite connect api quotas. |
| `MAILERLITE_GET_WEBHOOKS` | Get Webhooks | Tool to retrieve all configured webhooks. use when you need to list webhooks for your mailerlite account. |
| `MAILERLITE_SET_DOUBLE_OPTIN` | Set Double Opt-In | Tool to enable or disable double opt-in for new subscribers. use when configuring subscription confirmation settings. |
| `MAILERLITE_UPDATE_ECOMMERCE_CUSTOMER` | Update E-commerce Customer | Tool to update a customer's data for a shop by ids. use when you need to change email, marketing opt-in, or spend totals for an existing customer. |
| `MAILERLITE_UPDATE_ECOMMERCE_SHOP` | Update E-commerce Shop | Tool to update settings of a connected e-commerce shop by id. use when you need to modify shop details (name, url, currency) or toggle features after verifying the shop exists. |
| `MAILERLITE_UPDATE_FIELD` | Update Field | Tool to update the title of an existing custom field. use when renaming a field label (e.g., correct typos or rebranding). |
| `MAILERLITE_UPDATE_GROUP` | Update Group | Tool to update a group's name by id. use when renaming an existing group after confirming its id. |
| `MAILERLITE_UPDATE_SEGMENT` | Update Segment | Tool to rename an existing segment by id. use when you need to update a segment's name after confirming its id. |
| `MAILERLITE_UPDATE_SUBSCRIBER` | Update Subscriber | Tool to update an existing subscriber's information by id. use when altering subscriber details. |
| `MAILERLITE_UPDATE_WEBHOOK` | Update Webhook | Tool to update an existing mailerlite webhook. use when you need to change its url or event triggers by id. |

## Supported Triggers

None listed.

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

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

## Complete Code

None listed.

## Conclusion

### Way Forward
With Mailerlite 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 Mailerlite MCP Agent with another framework

- [OpenAI Agents SDK](https://composio.dev/toolkits/mailerlite/framework/open-ai-agents-sdk)
- [Claude Agent SDK](https://composio.dev/toolkits/mailerlite/framework/claude-agents-sdk)
- [Claude Code](https://composio.dev/toolkits/mailerlite/framework/claude-code)
- [Claude Cowork](https://composio.dev/toolkits/mailerlite/framework/claude-cowork)
- [Codex](https://composio.dev/toolkits/mailerlite/framework/codex)
- [OpenClaw](https://composio.dev/toolkits/mailerlite/framework/openclaw)
- [CLI](https://composio.dev/toolkits/mailerlite/framework/cli)
- [Google ADK](https://composio.dev/toolkits/mailerlite/framework/google-adk)
- [LangChain](https://composio.dev/toolkits/mailerlite/framework/langchain)
- [Vercel AI SDK](https://composio.dev/toolkits/mailerlite/framework/ai-sdk)
- [Mastra AI](https://composio.dev/toolkits/mailerlite/framework/mastra-ai)
- [LlamaIndex](https://composio.dev/toolkits/mailerlite/framework/llama-index)
- [CrewAI](https://composio.dev/toolkits/mailerlite/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.
- [Brevo](https://composio.dev/toolkits/brevo) - Brevo is an all-in-one email and SMS marketing platform for transactional messaging, automation, and CRM. It helps businesses engage customers and streamline communications through powerful campaign tools.
- [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.

## Frequently Asked Questions

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

With a standalone Mailerlite MCP server, the agents and LLMs can only access a fixed set of Mailerlite tools tied to that server. However, with the Composio Tool Router, agents can dynamically load tools from Mailerlite 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 Mailerlite tools.

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

Yes, absolutely. You can configure which Mailerlite 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 Mailerlite data and credentials are handled as safely as possible.

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