← 返回
未分类 中文

MailerLite

Manage MailerLite email marketing campaigns, automations, subscribers, and e-commerce stores. Create campaigns, manage groups and segments, handle subscriber...
管理MailerLite邮件营销活动、自动化、订阅者及电商商店,创建活动、管理群组与细分、处理订阅者。
hith3sh hith3sh 来源
未分类 clawhub v1.0.5 2 版本 99811.2 Key: 无需
★ 6
Stars
📥 1,466
下载
💾 1
安装
2
版本
#latest

概述

MailerLite

!MailerLite

Manage MailerLite email marketing operations. Create campaigns and automations, manage subscribers and groups, handle e-commerce stores, and track performance with analytics.

This skill uses ClawLink for hosted connection flows and credentials so you do not need to configure MailerLite API access yourself.

Setup in 3 Steps

Step 1: InstallStep 2: Pair AccountStep 3: Connect MailerLite
:---::---::---:
!Install!PairApp-specific connection GIF coming soon

How It Works

┌─────────────────┐     ┌──────────────┐     ┌──────────────────┐
│   OpenClaw      │────▶│   ClawLink   │────▶│ MailerLite API   │
│   (User Chat)   │     │   (OAuth)    │     │   (v2)          │
└─────────────────┘     └──────────────┘     └──────────────────┘
         │                       │                       │
         │  1. Install Plugin  │                       │
         │  2. Pair Device   │                       │
         │  3. Connect MailerLite│                     │
         │                   │  4. Secure Token      │
         │                   │  5. Proxy Requests    │
         │                   │                       │
         ▼                   ▼                       ▼
   ┌──────────┐      ┌──────────┐           ┌──────────┐
   │  SKILL   │      │ Dashboard│           │MailerLite│
   │  File    │      │ Auth     │           │ Marketing│
   └──────────┘      └──────────┘           └──────────┘

Install

Install the verified ClawLink plugin from ClawHub. After the user confirms, complete the full setup so ClawLink tools are visible in the next OpenClaw chat.

openclaw plugins install clawhub:clawlink-plugin
openclaw config set tools.alsoAllow '["clawlink-plugin"]' --strict-json
openclaw gateway restart

Then tell the user: "OpenClaw has been restarted. Send /new as a standalone message to start a fresh chat, then ask for MailerLite again."

Quick Start

# Get account info
clawlink_call_tool --tool "mailerlite_get_account_info" --params '{}'

# List subscribers
clawlink_call_tool --tool "mailerlite_get_subscribers" --params '{}'

# List campaigns
clawlink_call_tool --tool "mailerlite_get_campaigns" --params '{}'

Authentication

All MailerLite tool calls are authenticated automatically by ClawLink using the user's connected MailerLite account.

No API key is required in chat. ClawLink stores the OAuth token securely and injects it into every MailerLite API request on the user's behalf.

Getting Connected

  1. Install the ClawLink plugin (see Install above).
  2. Pair the plugin with clawlink_begin_pairing if it is not configured yet.
  3. Open https://claw-link.dev/dashboard?add=mailerlite and connect MailerLite (requires an active MailerLite account).
  4. Call clawlink_list_integrations to verify the connection is active.

Connection Management

List Connections

clawlink_list_integrations

Response: Returns all connected integrations. Look for mailerlite in the list.

Verify Connection

clawlink_list_tools --integration mailerlite

Response: Returns the live tool catalog for MailerLite.

Reconnect

If MailerLite tools are missing or the connection shows an error:

  1. Direct the user to https://claw-link.dev/dashboard?add=mailerlite
  2. After they confirm, call clawlink_list_integrations to verify
  3. Then call clawlink_list_tools --integration mailerlite

Security & Permissions

  • Access is scoped to the connected MailerLite account only.
  • All write operations require explicit user confirmation. Before executing any campaign, subscriber, or automation action, confirm the target resource and intended effect with the user.
  • Destructive actions (delete automation, delete subscriber, delete shop) are marked as high-impact and must be confirmed.
  • Subscriber deletion and GDPR "forget" operations are permanent — confirm before executing.

Tool Reference

Account

ToolDescriptionMode
-------------------------
mailerlite_get_account_infoGet basic MailerLite account details and metadataRead

Subscribers

ToolDescriptionMode
-------------------------
mailerlite_get_subscribersList subscribers with paginationRead
mailerlite_get_subscriberGet subscriber details by IDRead
mailerlite_create_subscriberCreate or update (upsert) subscriber by emailWrite
mailerlite_update_subscriberUpdate existing subscriber detailsWrite
mailerlite_delete_subscriberPermanently delete subscriber by IDWrite
mailerlite_forget_subscriberGDPR-compliant deletion (erases all data within 30 days)Write

Groups & Segments

ToolDescriptionMode
-------------------------
mailerlite_get_groupsList all subscriber groupsRead
mailerlite_get_groupGet group details by IDRead
mailerlite_create_groupCreate a new subscriber groupWrite
mailerlite_update_groupUpdate group name or settingsWrite
mailerlite_delete_groupPermanently delete a group and its associationsWrite
mailerlite_add_subscriber_to_groupAdd subscriber to a groupWrite
mailerlite_remove_subscriber_from_groupRemove subscriber from a groupWrite
mailerlite_get_segmentsList all subscriber segmentsRead
mailerlite_get_segmentGet segment details by IDRead
mailerlite_create_segmentCreate a new segment with criteriaWrite
mailerlite_update_segmentUpdate segment configurationWrite
mailerlite_delete_segmentPermanently delete a segmentWrite

Custom Fields

ToolDescriptionMode
-------------------------
mailerlite_get_fieldsList all custom fieldsRead
mailerlite_get_fieldGet custom field details by IDRead
mailerlite_create_fieldCreate a new custom fieldWrite
mailerlite_update_fieldUpdate custom field propertiesWrite
mailerlite_delete_fieldPermanently delete a custom fieldWrite

Campaigns

ToolDescriptionMode
-------------------------
mailerlite_get_campaignsList all campaigns with paginationRead
mailerlite_get_campaignGet campaign details by IDRead
mailerlite_create_campaignCreate a new email campaign draftWrite
mailerlite_update_campaignUpdate campaign settings and contentWrite
mailerlite_delete_campaignPermanently delete a campaignWrite
mailerlite_schedule_campaignSchedule campaign for future sendingWrite
mailerlite_unschedule_campaignRemove campaign from scheduleWrite
mailerlite_pause_campaignPause a sending campaignWrite
mailerlite_resume_campaignResume a paused campaignWrite
mailerlite_send_campaignSend campaign immediatelyWrite
mailerlite_clone_campaignClone an existing campaignWrite

Automations

ToolDescriptionMode
-------------------------
mailerlite_get_automationsList all automationsRead
mailerlite_get_automationGet automation details by IDRead
mailerlite_create_automationCreate a new automation workflowWrite
mailerlite_update_automationUpdate automation settingsWrite
mailerlite_delete_automationPermanently delete an automationWrite
mailerlite_start_automationStart an automationWrite
mailerlite_stop_automationStop a running automationWrite

E-Commerce

ToolDescriptionMode
-------------------------
mailerlite_get_ecommerce_shopsList all connected e-commerce shopsRead
mailerlite_get_ecommerce_shopGet shop details by IDRead
mailerlite_create_ecommerce_shopConnect a new e-commerce shopWrite
mailerlite_delete_ecommerce_shopDisconnect an e-commerce shopWrite
mailerlite_get_ecommerce_customersList customers in a shopRead
mailerlite_create_ecommerce_customerCreate or update customerWrite
mailerlite_delete_ecommerce_customerDelete customer from shopWrite
mailerlite_get_ecommerce_productsList products in a shopRead
mailerlite_create_ecommerce_productAdd a new productWrite
mailerlite_update_ecommerce_productUpdate product detailsWrite
mailerlite_delete_ecommerce_productDelete product from shopWrite
mailerlite_get_ecommerce_categoriesList product categoriesRead
mailerlite_create_ecommerce_categoryCreate a product categoryWrite
mailerlite_delete_ecommerce_categoryDelete category from shopWrite
mailerlite_add_product_to_categoryAssign product to a categoryWrite
mailerlite_get_ecommerce_ordersList orders in a shopRead
mailerlite_create_ecommerce_orderCreate a new orderWrite
mailerlite_update_ecommerce_orderUpdate order statusWrite
mailerlite_delete_ecommerce_orderDelete order from shopWrite
mailerlite_get_ecommerce_cartsList active cartsRead
mailerlite_create_ecommerce_cart_itemAdd item to cart (creates cart if needed)Write
mailerlite_delete_ecommerce_cart_itemRemove item from cartWrite

Webhooks

ToolDescriptionMode
-------------------------
mailerlite_get_webhooksList all webhooksRead
mailerlite_get_webhookGet webhook details by IDRead
mailerlite_create_webhookRegister a new webhook URLWrite
mailerlite_update_webhookUpdate webhook settingsWrite
mailerlite_delete_webhookPermanently delete a webhookWrite

Batch Operations

ToolDescriptionMode
-------------------------
mailerlite_execute_batch_requestExecute multiple API requests in one call (max 50)Write

Code Examples

Get account info

clawlink_call_tool --tool "mailerlite_get_account_info" \
  --params '{}'

List subscribers

clawlink_call_tool --tool "mailerlite_get_subscribers" \
  --params '{"limit": 25}'

Create a subscriber

clawlink_call_tool --tool "mailerlite_create_subscriber" \
  --params '{"email": "newsubscriber@example.com", "name": "John Doe"}'

Create a campaign

clawlink_call_tool --tool "mailerlite_create_campaign" \
  --params '{"subject": "Our Newsletter", "from_name": "My Company", "reply_to": "noreply@example.com"}'

Schedule a campaign

clawlink_call_tool --tool "mailerlite_schedule_campaign" \
  --params '{"campaign_id": "CAMPAIGN_ID", "schedule_time": "2024-12-15T10:00:00+00:00"}'

Discovery Workflow

  1. Call clawlink_list_integrations to confirm MailerLite is connected.
  2. Call clawlink_list_tools --integration mailerlite to see the live catalog.
  3. Treat the returned list as the source of truth. Do not guess or assume what tools exist.
  4. If the user describes a capability but the exact tool is unclear, call clawlink_search_tools with a short query and integration mailerlite.
  5. If no MailerLite tools appear, direct the user to https://claw-link.dev/dashboard?add=mailerlite.

Execution Workflow

┌─────────────────────────────────────────────────────────────┐
│  READ OPERATIONS (Safe)                                     │
│  list → get → search → describe → call                      │
│                                                             │
│  Example: List subscribers → Get details → Show results     │
└─────────────────────────────────────────────────────────────┘
                              │
                              ▼
┌─────────────────────────────────────────────────────────────┐
│  WRITE OPERATIONS (Require Confirmation)                     │
│  list → get → describe → preview → confirm → call          │
│                                                             │
│  Example: Preview campaign send → User approves → Send     │
└─────────────────────────────────────────────────────────────┘
  1. For unfamiliar tools, ambiguous requests, or any write action, call clawlink_describe_tool first.
  2. Use the returned guidance, schema, whenToUse, askBefore, safeDefaults, examples, and followups to shape the call.
  3. Prefer read, list, search, and get operations before writes when that reduces ambiguity.
  4. For writes or anything marked as requiring confirmation, call clawlink_preview_tool first.
  5. Execute with clawlink_call_tool. Pass confirmation only after the preview matches the user's intent.
  6. If the tool call fails, report the real error. Do not invent results or restate the failure as a missing capability unless the live catalog supports that conclusion.

Notes

  • Campaign creation sets can_be_scheduled based on plan capabilities.
  • HTML content support is plan-dependent — insufficient plan sets can_be_scheduled=false on draft.
  • Subscriber upsert updates non-destructively — omitted fields and groups are preserved.
  • GDPR forget_subscriber permanently deletes all data within 30 days.
  • Batch requests maximum 50 requests per call; individual failures don't stop processing.
  • Webhooks are not supported in batch requests.
  • Cart creation for abandoned cart automations creates cart if it does not exist.

Error Handling

Status / ErrorMeaning
-------------------------
Tool not foundThe tool name does not exist in the current catalog. Verify with clawlink_list_tools --integration mailerlite.
Missing connectionMailerLite is not connected. Direct the user to https://claw-link.dev/dashboard?add=mailerlite.
Permission errorThe account lacks permission for this operation.
Subscriber not foundThe subscriber ID or email does not exist.
Campaign not foundThe campaign ID does not exist. Verify with mailerlite_get_campaigns.
Write rejectedUser did not confirm a write action. Always confirm before executing writes.

Troubleshooting: Tools Not Visible

  1. Check that the ClawLink plugin is installed:

```bash

openclaw plugins list

```

  1. If the plugin is installed but tools are missing, tell the user to send /new as a standalone message to reload the catalog.
  2. If a fresh chat does not help, run:

```bash

openclaw config set tools.alsoAllow '["clawlink-plugin"]' --strict-json

openclaw gateway restart

```

  1. After restart, tell the user to send /new again and retry.

Resources

  • MailerLite API Documentation
  • MailerLite Integrations
  • ClawLink: https://claw-link.dev/?utm_source=clawhub&utm_medium=referral&utm_content=mailerlite-email-marketing
  • ClawLink Docs: https://docs.claw-link.dev/openclaw
  • ClawLink Verification: https://claw-link.dev/verify

Related Skills


Powered by ClawLink — an integration hub for OpenClaw

!ClawLink Logo

版本历史

共 2 个版本

  • v1.0.5 当前
    2026-06-09 16:15 安全 安全
  • v0.1.0
    2026-05-21 14:03 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

business-ops

Stripe

byungkyu
Stripe API 集成,支持托管 OAuth,实现对客户、订阅、发票、产品、价格和支付的可写金融集成。
★ 27 📥 25,988
office-efficiency

Microsoft Excel

hith3sh
通过托管 OAuth 集成 Microsoft Excel API,实现对 OneDrive 中 Excel 工作簿、工作表、区域、表格和图表的读写。使用此技能...
★ 6 📥 1,928
business-ops

Trello

steipete
使用 Trello REST API 管理看板、列表和卡片
★ 162 📥 41,228