mailerlite
Integrates with MailerLite API for managing email subscribers, campaigns, and automations using OAuth authentication.
Install this skill
Security score
The mailerlite skill was audited on Feb 16, 2026 and we found 44 security issues across 4 threat categories. Review the findings below before installing.
Categories Tested
Security Issues
Template literal with variable interpolation in command context
| 690 | 'Authorization': `Bearer ${process.env.MATON_API_KEY}` |
Fetch to external URL
| 686 | const response = await fetch( |
Webhook reference - potential data exfiltration
| 20 | Access the MailerLite API with managed OAuth authentication. Manage subscribers, groups, campaigns, automations, forms, fields, segments, and webhooks. |
Webhook reference - potential data exfiltration
| 586 | ### Webhook Operations |
Webhook reference - potential data exfiltration
| 588 | #### List Webhooks |
Webhook reference - potential data exfiltration
| 591 | GET /mailerlite/api/webhooks |
Webhook reference - potential data exfiltration
| 594 | #### Get Webhook |
Webhook reference - potential data exfiltration
| 597 | GET /mailerlite/api/webhooks/{webhook_id} |
Webhook reference - potential data exfiltration
| 600 | #### Create Webhook |
Webhook reference - potential data exfiltration
| 603 | POST /mailerlite/api/webhooks |
Webhook reference - potential data exfiltration
| 609 | "url": "https://example.com/webhook" |
Webhook reference - potential data exfiltration
| 613 | #### Update Webhook |
Webhook reference - potential data exfiltration
| 616 | PUT /mailerlite/api/webhooks/{webhook_id} |
Webhook reference - potential data exfiltration
| 620 | "name": "Updated Webhook", |
Webhook reference - potential data exfiltration
| 625 | #### Delete Webhook |
Webhook reference - potential data exfiltration
| 628 | DELETE /mailerlite/api/webhooks/{webhook_id} |
Access to .env file
| 690 | 'Authorization': `Bearer ${process.env.MATON_API_KEY}` |
External URL reference
| 6 | For other third party apps, use the api-gateway skill (https://clawhub.ai/byungkyu/api-gateway). |
External URL reference
| 28 | req = urllib.request.Request('https://gateway.maton.ai/mailerlite/api/subscribers?limit=10') |
External URL reference
| 37 | https://gateway.maton.ai/mailerlite/{native-api-path} |
External URL reference
| 58 | 1. Sign in or create an account at [maton.ai](https://maton.ai) |
External URL reference
| 59 | 2. Go to [maton.ai/settings](https://maton.ai/settings) |
External URL reference
| 64 | Manage your MailerLite OAuth connections at `https://ctrl.maton.ai`. |
External URL reference
| 71 | req = urllib.request.Request('https://ctrl.maton.ai/connections?app=mailerlite&status=ACTIVE') |
External URL reference
| 83 | req = urllib.request.Request('https://ctrl.maton.ai/connections', data=data, method='POST') |
External URL reference
| 95 | req = urllib.request.Request('https://ctrl.maton.ai/connections/{connection_id}') |
External URL reference
| 109 | "url": "https://connect.maton.ai/?session_token=...", |
External URL reference
| 123 | req = urllib.request.Request('https://ctrl.maton.ai/connections/{connection_id}', method='DELETE') |
External URL reference
| 136 | req = urllib.request.Request('https://gateway.maton.ai/mailerlite/api/subscribers') |
External URL reference
| 609 | "url": "https://example.com/webhook" |
External URL reference
| 646 | "first": "https://connect.mailerlite.com/api/subscribers?cursor=...", |
External URL reference
| 649 | "next": "https://connect.mailerlite.com/api/subscribers?cursor=eyJpZCI6MTIzNDU2fQ" |
External URL reference
| 652 | "path": "https://connect.mailerlite.com/api/subscribers", |
External URL reference
| 687 | 'https://gateway.maton.ai/mailerlite/api/subscribers?limit=10', |
External URL reference
| 704 | 'https://gateway.maton.ai/mailerlite/api/subscribers', |
External URL reference
| 718 | 'https://gateway.maton.ai/mailerlite/api/subscribers', |
External URL reference
| 767 | req = urllib.request.Request('https://ctrl.maton.ai/connections') |
External URL reference
| 777 | - Correct: `https://gateway.maton.ai/mailerlite/api/subscribers` |
External URL reference
| 778 | - Incorrect: `https://gateway.maton.ai/api/subscribers` |
External URL reference
| 782 | - [MailerLite API Documentation](https://developers.mailerlite.com/docs/) |
External URL reference
| 783 | - [MailerLite Subscribers API](https://developers.mailerlite.com/docs/subscribers.html) |
External URL reference
| 784 | - [MailerLite Groups API](https://developers.mailerlite.com/docs/groups.html) |
External URL reference
| 785 | - [MailerLite Campaigns API](https://developers.mailerlite.com/docs/campaigns.html) |
External URL reference
| 786 | - [Maton Community](https://discord.com/invite/dBfFAcefs2) |