How much does the MailerLite API actually cost?
MailerLite publishes an API, but per-tier gating wasn't extracted automatically.
- Most likely scenario: API access is either included in all paid plans, or it's gated to higher tiers and we need to verify on the live docs page.
- Until verified, treat the question "which plan unlocks the API" as open. Don't budget on the assumption it's free with the cheapest paid plan.
API at a glance
Webhooks: MailerLite supports webhooks (exposed both through the MCP server's tools and the REST API) for subscriber and campaign events, so you can drive event-based automation rather than polling.
Which AI clients can read MailerLite data?
Not every AI assistant supports MCP natively. Here's the per-client picture for MailerLite specifically.
| Client | Support | Notes |
|---|---|---|
| Claude (Desktop/Web) | Native MCP | Add https://mcp.mailerlite.com/mcp as a custom connector; OAuth login, no API key. |
| Claude Code | Native MCP | Add the remote MCP server URL; full subscriber, campaign and automation tools available. |
| Cursor | Native MCP | Documented by MailerLite as a supported MCP client against the same endpoint. |
| ChatGPT | Native MCP | Supported on ChatGPT Pro/Plus (beta) as an MCP client. |
| n8n | API-only (custom code) | No native MCP node; integrate via the MailerLite REST API with a Bearer API key. |
MailerLite also has an MCP server
If you're wiring MailerLite into Claude / Cursor / Codex, the MCP server is usually less code than the REST API.
See MailerLite MCP pageWhat you can build with the MailerLite API
Three personas, three different shapes of build. Pick the row that matches how you actually ship.
Glue MailerLite into your daily workflow
- Pull a digest of campaign performance into your morning Slack
- Trigger a one-off backfill when something looks off
- Pipe data into your own SQLite for ad-hoc queries
Sell MailerLite reporting at scale
- White-label MailerLite data into client-branded dashboards
- Run scheduled multi-account reports without logging into the MailerLite UI
- Cross-reference with the rest of the client's stack (CRM, analytics, ad spend)
Production pipelines for MailerLite
- Real-time sync into your warehouse via webhooks
- Custom alerts the dashboard's built-in alerting can't express
- Backfill + idempotency handling for MailerLite data older than the dashboard exposes
Quickstart template
# Starter template — endpoint paths and SDK package names come from # the MailerLite API docs: https://developers.mailerlite.com curl -X GET "https://developers.mailerlite.com/<your-endpoint>" \ -H "Authorization: Bearer $TOKEN" \ -H "Accept: application/json" | jq .
Template only. Endpoint paths, exact base URL, and auth header format come from developers.mailerlite.com.
Limits and gotchas
- No OpenAPI spec — you write typed clients by hand or use a third-party generator on the docs HTML.
- Webhooks available — react to MailerLite events in real time instead of polling.
- Official SDKs: PHP, Node.js, Python, Go, Ruby. Use them to skip auth boilerplate and get type safety.
- Rate limits: always read the docs page before scaling — the published limit is usually lower than the practical one and overages can be expensive.
- No-code fallback: Zapier and Make.com cover the common triggers if you want to skip writing API code for simple flows.
Agent-readiness verdict
A mature, well-documented REST API with official SDKs across five languages and Bearer-token auth, covering the full product. Combined with the MCP server on top, MailerLite is one of the most complete agent-and-API stories in email marketing. A strong 8 out of 10.
Moderate agent-fit with community support. MailerLite has a public API with docs and a working community MCP server, plus native Claude integration, but lacks official MCP hosting, OpenAPI spec, and webhooks for event-driven workflows. The missing structured outputs and single-language SDK options limit automation complexity.
MailerLite API FAQ
Does MailerLite have a public API?+
Does MailerLite have official SDKs?+
Does MailerLite support webhooks?+
Should I use the API or the MCP server for Claude / Cursor / Codex?+
Sources
- MailerLite official site: https://www.mailerlite.com/
- API docs: https://developers.mailerlite.com
- MCP server: https://mcp.mailerlite.com/mcp
10+ years in digital marketing. I review marketing software for AI-stack fit: real pricing, MCP and API support, and how cleanly each tool drops into an AI agent workflow, cross-checked against verified data and real user feedback.

